Web_1 html标签

2019-12-29  本文已影响0人  kerooooo
html标签.png
<html>
    <head>
        <meta name="keyword" content="学校 教育 少儿编程">
        <link href="style.css"> <!--加载css文件-->
        <script src=""></script>
        <title>我的demo!</title>
    </head>
    <body>
        <header>
                <h1>hello world!</h1>
        </header>
        <hr>

        <h2>hello world!</h2>
        <h3>hello world!</h3>
        <h4>hello world!</h4>
        <h5>hello world!</h5>
        <h6>hello world!</h6>

        <p>
            Lorem ipsum dolor sit, 
            amet consectetur adipisicing elit.
            Ipsum rem cumque est sed illo quos 
            dicta repudiandae suscipit,
        </p>
        <p>
            itaque nihil obcaecati aut odit repellat 
            temporibus ratione dignissimos 
            doloremque accusamus modi.
        </p>
        <div>
            abc
        </div>
        <a href="http://baidu.com" target="_black">戳我!</a> 
        <!--
            target规定是在当前标签页打开,还是在新标签页中打开
            _selft:在当前标签页打开
            _black:在新的标签页打开
        -->
        <img src="http://image.baidu.com/search/detail?ct=503316480&z=0&ipn=d&word=%E5%8A%A8%E5%9B%BE%20%E6%90%9E%E7%AC%91&step_word=&hs=2&pn=7&spn=0&di=163350&pi=0&rn=1&tn=baiduimagedetail&is=0%2C0&istype=2&ie=utf-8&oe=utf-8&in=&cl=2&lm=-1&st=-1&cs=3629057141%2C3827316573&os=4066287973%2C3483242345&simid=0%2C0&adpicid=0&lpn=0&ln=1009&fr=&fmq=1577413902480_R&fm=detail&ic=undefined&s=undefined&hd=undefined&latest=undefined&copyright=undefined&se=&sme=&tab=0&width=undefined&height=undefined&face=undefined&ist=&jit=&cg=&bdtype=0&oriquery=&objurl=http%3A%2F%2Fhbimg.b0.upaiyun.com%2F2f376e5410132571d0fc0303293a6a8b745c61d61718a-54HxZX_fw658&fromurl=ippr_z2C%24qAzdH3FAzdH3Fi7wkwg_z%26e3Bv54AzdH3FrtgfAzdH3F8m9ccc8c9m&gsm=&rpstart=0&rpnum=0&islist=&querylist=&force=undefined">
        <img src="http://image.baidu.com/search/detail?ct=503316480&z=0&ipn=d&word=%E8%A1%A8%E6%83%85&step_word=&hs=0&pn=26&spn=0&di=440&pi=0&rn=1&tn=baiduimagedetail&is=0%2C0&istype=2&ie=utf-8&oe=utf-8&in=&cl=2&lm=-1&st=-1&cs=3181999728%2C2090431388&os=566324678%2C1725938700&simid=4221385569%2C548569339&adpicid=0&lpn=0&ln=1781&fr=&fmq=1577414148225_R&fm=result&ic=&s=undefined&hd=&latest=&copyright=&se=&sme=&tab=0&width=&height=&face=undefined&ist=&jit=&cg=&bdtype=0&oriquery=&objurl=http%3A%2F%2Fimg0.pconline.com.cn%2Fpconline%2F1501%2F27%2F6068817_3404_thumb.jpg&fromurl=ippr_z2C%24qAzdH3FAzdH3Frvj17_z%26e3Brv5gstgj_z%26e3Bv54_z%26e3BvgAzdH3FmamAzdH3Fmambb80_z%26e3Bip4s&gsm=&rpstart=0&rpnum=0&islist=&querylist=&force=undefined" alt="">
        <table border="1">
            <thead>
                    <tr>
                            <th>姓名</th>
                            <th>心情</th>
                    </tr>
            </thead>
            <tbody>
                    <tr>
                            <td>王华华</td>
                            <td>:)</td>
                    </tr>
                    <tr>
                            <td>黎明</td>
                            <td>:D</td>
                    </tr>
            </tbody>
            
        </table>
        <form action="">
            username:<input><br>
            password:<input><br>
            <button>注册</button>
        </form>
        <abbr title="Hyper Text Markup Language">HTML</abbr> is cool!
        If variable <code>$a == 1</code>
        <pre>
            if($a == 1){
                ...
            }
        </pre>
        <hr>
        <footer>
            Contact | Terms | Privacy | About
            thisisxiaoqin@163.com
        </footer>
    </body>
</html>
上一篇下一篇

猜你喜欢

热点阅读