看了翁恺的html视频初学了一下这个,感觉还是挺有意思的。
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
| <!DOCTYPE html> <html>
<head> <title>你好</title> <meta charset=utf-8> </head>
<body>
<p> <table border = 1> <caption>表格</caption> <thead> <tr> <th>OS</th> <th>Chinese</th> <th>Franch</th> </tr> </thead> <tbody> <tr> <td>ios</td> <td>yes</td> <td>yes</td> </tr> <tr> <td>windows</td> <td colspan= 2></td> </tr> </tbody> </table> </p>
<p> <h1>test</h1>
<code> <pre> int main(int argc, const char* argv[]) { std::cout << "Hello!" << std::endl; return 0; } </pre> </code>
<hr width = 50% align = left size = 2> <abbr title = "中华人民共和国">PRC</abbr>
<address> <blockquote> Rm 401 CKP West Wing<br> <blockquote> Camps </blockquote> </blockquote> </address> <br>
<em>em强调</em> <strong>strong着重</strong> <dfn>定义</dfn> <code>code</code> <samp>samp例子代码</samp> <kbd>kbd用户输入</kbd> <var>variable变量</var> <cite>cite引用</cite> <br>
Hello <tt>World</tt>!<br> <b>翁恺</b>老师<i>竟然</i>开始教<small>前端</small>了<br> <del>我的男神,</del><ins>学编程就是看他的。</ins>为了他我要努力<s>保研</s>去<mark>浙大</mark>!!!<br> <bdo> 编程语言入门之父 </bdo>
</p> <p title = "测试"> 你好<br> 世界!<br> a<sup>2</sup> + b<sub>0</sub> a<2<br> b>a<br> &<br> &bnsp;1 LüLÜ </p>
<p> 餐后的饮料有: <ul> <li>红茶</li> <li>咖啡</li> <li>可乐</li> </ul> <ol> <li>其他</li> </ol>
<dl> <dt>方糖</dt> <dd>方的糖</dd> </dl> </p>
<img src = "https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" width=50% alt = "hi" height = 50%/> <iframe src = "https://www.baidu.com"></iframe> </p>
<p id = "here"> <a href = "https://www.bilibili.com" target = _blank>霹雳霹雳</a> <a href = "#here">here</a> </p>
</body>
</html>
|