HTML SiteMap
这是一个简单的HTML网站地图,使用Markdown格式编写。网站的背景颜色为白色,字体设置为雅黑、宋体等常见字体,字体大小为12px。页面标题颜色为绿色。主要内容包括一个带有绿色背景和边框的#intro
部分,以及一个无序列表#myTable
,其中的每个列表项都有一个类名为.T1-h
的浮动元素。
页面结构
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>HTML SiteMap</title>
<style>
body{background-color:#fff;margin:20px;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px}
h1{color:#189115}
#intro{background-color:#cef9e4;border:1px #49a92e solid;padding:15px 10px 15px 10px;margin:10px 0 10px 0;line-height:20px;min-width:900px}
#myTable{font-size:11px;list-style:none;margin:10px 0 10px 0;padding:0;width:100%;min-width:804px}
#myTable li{list-style-type:none;width:100%;min-width:404px;height:20px;line-height:20px}
#myTable li .T1-h{float:left;font-weight:700;}
</style>
</head>
<body>
<h1>HTML SiteMap</h1>
<div id="intro">
<!-- Intro内容 -->
</div>
<ul id="myTable">
<!-- List项内容 -->
</ul>
</body>
</html>