<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
Salin selepas log masuk
说明:
表示列表开始
表示列表项
表示列表项的定义
注意,列表项内部可以使用段落、换行符、图片、链接以及其他列表等等。
3、HTML类
对HTML进行分类,能为元素的类定义CSS样式。
对相同的类设置相同的样式。
<!DOCTYPE html>
<html>
<head>
<style>
.cities {
background-color:black;
color:white;
margin:20px;
padding:20px;
}
</style>
</head>
<body>
<p class="cities">
<h2>London</h2>
<p>
London is the capital city of England.
It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.
</p>
</p>
</body>
</html>