<!DOCTYPE html><!--first-->
<html lang="zh-cn"><!--language-->
<head>
<meta charset="UTF-8" /><!--code-->
<title>My test</title><!--title of page-->
</head>
<body>
<h1>Do you like banana?</h1><!--have 6 for h1 to h6-->
<h2 lang="en">how are you those days</h2>
<h3 lang="zh-cn">今天天气真好</h3>
</body>
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8"/>
<title>test 2</title>
</head>
<body>
<article>
<hgroup>
<h1>What it is?</h1>
<h2>Why should I do it in this way?</h2>
<h3>How can I do it?</h3>
</hgroup>
<p>this is a way when i learn some new things</p>
</article>
</body>
</html>
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8"/>
<title>test 2</title>
</head>
<body>
<header>
<h1>preview</h1>
<nav>
<ul>
<li><a href="#question1">What it is?</a></li>
<li><a href="#question2">Why should I do it in this way?</a></li>
<li><a href="#question3">How can I do it?</a></li>
</ul>
</nav>
</header>
<article id="question1">
<h2>What it is?</h2>
<p>this is a way when i learn some new things</p>
</article>
<article id="question2">
<h2>Why should I do it in this way?</h2>
</article>
<article id="question3">
<h2>How can I do it?</h2>
</article>
</body>
</html>
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8"/>
<title>test 2</title>
</head>
<body>
<article>
<h1>new try</h1>
<section>
<ol>
<li>Open</li>
<li>edit</li>
<li>complier</li>
<li>test</li>
</ol>
</section>
</article>
<aside role="addition1">
<h1>add</h1>
<ul>
<li lang="zh-cn">验证</li>
</ul>
</aside>
<footer>
<p><small>data Jan.9.2019</small></p>
</footer>
</body>
</html>
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8"/>
<title>test 2</title>
</head>
<body>
<div id="content">
<article>
<h1>new try</h1>
<section>
<ol>
<li>Open</li>
<li>edit</li>
<li>complier</li>
<li>test</li>
</ol>
</section>
</article>
</div>
<div>
<aside role="addition1">
<h1>add</h1>
<ul>
<li lang="zh-cn">验证</li>
</ul>
</aside>
</div>
<footer>
<p><small>data Jan.9.2019</small></p>
<address>
here my home page<a href="https://blog.csdn.net/qq_34902939">poppy</a>
</address>
</footer>
</body>
</html>