console
<html>
<head>
<title>第一个页面:文本标签</title>
</head>
<body>
<img src="https://www.zenitour.com/img/logoIndex.png" alt=""/>
<hr/>
<p>这些是文本的样式</p>
<hr/>
<div>
<b>1...这个是一个字体加粗的标签....</b>
<hr/>
<i>2...这个是让字体变成斜体的标签....</i>
<hr/>
<u>3....下滑线的标签...</u>
<hr/>
<s>4...删除线标签</s>
<hr/>
<s>5...¥998.00元,打折之后要99元。</s>
<hr/>
</div>
<p>下面是让字体变大变小的元素....</p>
<hr/>
<div>
<h1>标题一this is a dog!!!!</h1>
<hr/>
<h2>标题二this is a dog!!!</h2>
<hr/>
<h3>标题三this is a dog!!!</h3>
<hr/>
<h4>标题四this is a dog!!!</h4>
<hr/>
<h5>标题五this is a dog!!!</h5>
<hr/>
<h6>标题六this is a dog!!!</h6>
</body>
</html>