zoukankan      html  css  js  c++  java
  • 第一个html文件

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>ddiyige nb de 网页</title>
    </head>
    <body>
    <!--这个body 中间内部就可以写东西了,写的内容会被呈现在页面上,红色的就是被注释掉的-->

    你好 <br/>
    欢迎光临 <hr/>
    宜将剩勇追穷寇,不可沽名学霸王

    <h1>this is h1</h1>
    <!--这个h1 h2 表示字体的大小,数字越大,字体越小-->
    <h2>this is h1</h2>
    <h3>this is h1</h3>
    <h4>this is h1</h4>
    <h5>this is h1</h5>
    <h6>this is h1</h6>
    <!-- <marquee direction="right">欢迎光临xxxxxxx</marquee>-->

    <!--无序列表-->
    <ul type="square">
    <li>123</li>
    <li>内容</li>
    <li>456</li>
    <li>789</li>
    </ul>

    <!--有序列表-->
    <ol type="1">
    <!--这个type = 1 下面就是以1234的形式显示 如果等于I 下面就是以 I II III IV 的形式显示-->
    <li>123</li>
    <li>内容</li>
    <li>456</li>
    <li>789</li>
    </ol>
    </body>
    </html>
  • 相关阅读:
    三个习题
    20 python--celery
    19 python --队列
    18 python --多线程
    17 python --多进程
    16 python --memcached
    15 python --redis
    14 python --mysql
    13 python --正则
    12 python --json
  • 原文地址:https://www.cnblogs.com/1832921tongjieducn/p/11129545.html
Copyright © 2011-2022 走看看