您的位置:首页 > Web前端 > CSS

HTML&CSS 【二】

2016-01-21 23:08 281 查看
Ordered Lists

<ol>
<li>html</li>
<li>css</li>
...
</ol>


1.html
2.css


Unordered lists

<ul>
<li>the good wife</li>
<li>big bang theory</li>
<li>modern family</li>
<li>arrow</li>
</ul>




Lists inside a list

<ol>
<li>Dad's interests
<ul>
<li>football</li>
<li>knitting</li>
</ul>
</li>

<li>Mom's intesets
<ul>
<li>hating football</li>
<li>skygating</li>
</ul>
</li>
</ol>




Comments

<!-- and end with -->
eg:<!-- this is a comment. -->


Font size

<p style="font-size: 12px"></p>


Font color

<h1 style="color: green; font-size: 12px"></h2>


Font family

<li style="font-size: 12px; font-family: Verdana"></li>


Background color

<body style="background-color: brown"></body>


Aligning the text

<li style="text-align: center"></li>
center/left/right


Strong worlds – Bold

<p>Hello, I am <strong>sammy</strong>.</p>


Emphasize words – italicize 斜体

<p>Hello, I am <em>sammy</em>.</p>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html css