html 代码

<html>
<head>
<!-- 解决 乱码,告诉浏览器当前文档类型和编码-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- 
标签<hn> ==> 的取值范围是1-6,
    1,加粗,
    2,换行
    3,1-6从大到小
    字体标签:<font>
    size: 大小。取值1-7,之间从小到大
    face: 字体。
    
    
 -->
<h4><u>静夜思</u></h4> 
<hr>
<font size="5" face="楷体" color="rgb(255,0,255)"> &nbsp;&nbsp;李白</font> <br/>
<p>
<b><u>床前明月光,</u></b><br/>
<strike>疑是地上霜,</strike><br/>
<big>举头望明月,</big><br/>
<small>低头思故乡。</small>
</p>
<pre><!-- 当作普通文本来解析 -->
public void main(String[] args){
    int i=l+i;
    System.out.print(i);

}
</pre>
<!-- &nbsp; ==> 空格
     &gt;  大于号
     &lt;   小于号
 -->
<hr>
3<sup>2</sub>
3<sub>2</sub><br/>
1<3>2,a&gt;c
<hr/>
<ol type="i"  start="90">
    <li>吃饭</li>
    <li>睡觉</li>
    <li>游戏</li>

</ol>
<hr/>
<!-- 
ol : 有序列表
ul : 无序列表

type : 取值:A a I i 1 (默认值)
start属性:    
disc (默认
square(方形
circle(圆形
 -->
 
 
<ul type="circle"  start="90">
    <li>吃饭</li>
    <li>睡觉</li>
    <li>游戏</li>

</ul>

<hr/>
<dl>
<dt>rpg 游戏</dt>
    <dd>仙剑奇侠传</dd>
    <dd>轩辕剑</dd>
    <dd>金庸群侠传</dd>
 
moba游戏
    真三国无双
    Dota
    LoL
</dl>



</body>
</html>
发现自己的不足,善于利用找到的方法去扬长避短。行动起来。
原文地址:https://www.cnblogs.com/rechen/p/5132166.html