JS+HTML+CSS 学习笔记

来源:互联网 发布:java 线程传递数据 编辑:程序博客网 时间:2024/04/28 15:51


HTML

<!DOCTYPE html><html><head>    <!-- 配置项,不用于显示-->    <title> 我的页面</title>    <meta charset="utf-8"></head><body>    <address>        <blockquote>        Pm401 CKP WesT Wing<br>            <blockquote>                玉泉            </blockquote>        </blockquote>    </address>    <code>    <pre>        int main()        {            print "Hello World!";            return 0;        }    </pre></code>    <ol>        <li>奶茶</li>        <li>奶茶            <ul>                <li>                    不加糖                </li>                <li>                    加糖                </li>            </ul>        </li>        <li>奶茶</li>    </ol>    <hr width="50%" align=left size=2>    <!-- 分割线 -->    The <abbr title="中华人民共和国">PRC</abbr> was founded in 1949    <bdo dir="rtl">123456789</bdo>    <!-- 颠倒字符 --->    <!-- 正文-->    <b id="here">你好</b>    <i>hello</i> <del>This</del><ins>this</ins> text contains<br/> a line break    <tt>tt</tt>    <small>haha</small>    <s>过时的</s>    <mark>南方庄园</mark>    <em>强调</em>    <strong>着重强调</strong>    <dfn>definition</dfn>    <code>code代码</code>    <samp>samp例子代码</samp>    <kbd>用户输入</kbd>    <var>变量</var>    <a href="https://www.taobao.com" target=_blank> 打开淘宝</a>    <a href="#here"> 打开淘宝</a>    <!---跳转到id=here--->    <cite>引用</cite>    <img src="https://pic2.zhimg.com/3f0f5b4b826350aea5625808d330a0fd_b.jpg" width="50%" />    <iframe src="https://www.taobao.com" width="100%" height="100%"></iframe> 前面    <table>        <caption>            表格        </caption>        <tr>            <th>OS</th>            <th>CHINESE</th>            <th>FREBCH</th>        </tr>        <tr>            <td>                ios5            </td>            <td>                yes            </td>            <td>                yes            </td>        </tr>        <tr>                    </tr>    </table>    后面</body></html>


0 0
原创粉丝点击