”`markdown# 本网站简介
这是一个简洁、清晰的网站,提供了各种实用的信息和服务。网站的设计风格现代且易于导航,用户可以轻松找到所需的内容。
页面设置
body
:页面主体部分,设置了全局的字体大小、颜色以及外边距和内边距。h1
:一级标题,具有较大的字号和粗体样式,用于突出重要的信息。h2
:二级标题,字体颜色为#4288ce
,字体加粗,用于对主要内容进行描述。h3.subheading
:三级子标题,颜色和字体样式与二级标题相同,用于进一步细分内容。h3
:三级标题,用于普通段落的引导和强调。
代码块
/* Base */
body { color: #333; font: 14px Verdana, "Helvetica Neue", helvetica, Arial, 'Microsoft YaHei', sans-serif; margin: 0; padding: 0 20px 20px; word-break: break-word; }
h1{ margin: 10px 0 0; font-size: 28px; font-weight: 500; line-height: 32px; }
h2{ color: #4288ce; font-weight: 400; padding: 6px 0; margin: 6px 0 0; font-size: 18px; border-bottom: 1px solid #eee; }
h3.subheading { color: #4288ce; margin: 6px 0 0; font-weight: 400; }
h3{ margin: 12px; font-size: 16px; font-weight: bold;
}
”`