1<html>2<head>3<title>Document name goes here</title>4</head>5<body>6 Visible text goes here
7</body>8</html>
文本元素
1<p>This is a paragraph</p>2<br> (line break)
3<hr> (horizontal rule)
4<pre>This text is preformatted</pre>
链接、锚、图像元素
1<ahref="http://www.example.com/">This is a Link</a>2<ahref="http://www.example.com/"><imgsrc="URL"alt="Alternate Text"></a>3<ahref="mailto:webmaster@example.com">Send e-mail</a>A named anchor:
4<aname="tips">Useful Tips Section</a>5<ahref="#tips">Jump to the Useful Tips Section</a>