1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| <!DOCTYPE html>
<html lang="en">
<head> <meta charset="UTF-8"> <meta name="keywords" content="java"> <meta name="description" content="learn java">
<title>第一个网页</title> </head>
<body>
<a name="top">顶部</a>
<h1>一级标签</h1> <h2>二级标签</h2> <h3>三级标签</h3> <h4>四级标签</h4>
<p>你好 真的好</p> <p>非常好 哈哈哈哈</p>
哈哈哈哈<br/> 下一行<br/>
<hr/>
<h1>字体样式标签</h1> <strong>粗体:i love you </strong><br/> <em>斜体:i love you</em>
<br/>
空 格 <br/> > <br/> < <br/> 版权符号:© <br/>
<img src="../sources/image/hello.jpg" alt="image" title="悬停文字" width="300" height="300"> <br/> <img src="../sources/image/hello.jpeg" alt="image hello"> <br/>
<a href="https://google.com" target="_blank">点击我跳转到google</a> <br/> <a href="https://baidu.com" target="_self"><img src="../sources/image/hello.jpg" alt="哈哈哈"></a> <hr/>
<a href="#top">回到顶部</a> <hr/>
<a href="mailto:1251108673@qq.com">点击联系我</a> <hr/> <a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=&site=qq&menu=yes"> <img border="0" src="http://wpa.qq.com/pa?p=2::53" alt="加我领取好看的小说" title="加我领取好看的小说"/></a>
</body> </html>
|