2020-11-17

Learning perception: The web design course is really a very useful course. The class is full of dry goods. I listened very carefully. It is more serious than my usual professional courses. It is also very good for me to learn web design well. , Will enable you to master a very useful skill, which will be of great help to your future life and work. Web design is also very difficult. It is also very difficult to learn it well. It takes a lot of effort to Really master this skill. 

The first point

<!DOCTYPE html>
<!---->
<html>
    <head>
        <meta charset="utf-8" />
        <title>Just click on Baidu and you will know</title>
    </head>
    <body>
        < img src="img/30f87a9e527244bfa6791953e814c697.jpg" />
        <a href="http://www.baidu.com">baidu</a>
        <img src="img/1a3d68729f6f431e8ef7a62fe1eca64b.jpg"/>
        <b>Baidu </b>
        <i>Baidu</i>
        <del>Baidu</del>
        <span>Baidu</span>
        <p>University of Technology</p>
        <div style="text-align: center;"> Zhengzhou University</div>
        <h1 style="text-align: center;">University of Technology</h1>
        <h6 style="text-align: center;">University of Technology</h6>
        <ol>
            <li>Language</li>
            <li>Mathematics</li>
            <li>English</li>
        <ul type="square">
            <li>Language</li>
            <li>Mathematics</li>
            <li >English</li>
    </body>
</html>

The second point

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            table{
                border: 1px solid black;
                border-spacing: 0px;
                border-collapse: collapse;
            }
            th,td{
                border: 1px solid black;
            }
        </style>
    </head>
    <body>
        <table>
            <tr>
                <th>序号</th><th>姓名</th><th>手机号</th><th>家庭住址</th>
            </tr>
            <tr>
                <th>1</th><th>jim</th><th>110</th><th>Zhengzhou High-tech Zone Police Station</th>
            </tr>
            <tr>
                <th>2</th ><th>gdhgs</th><th>120</th><th>Zhengzhou Central Hospital</th>
            </tr>
        </table>
    </body>
</html>

The third point

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <form>
            <input type="text"placeholder="请输入用户名" />
            <input type="text"placeholder="请输入密码" />
            <input type="file" />
            <select>
                <option>--请选择--</option>
                <option>河南省</option>
                <option>河北省</option>
            </select>
            <textarea></textarea>
            <input type="radio" name="sex" id="male" ><label for="male">男</label>
            <input type="radio" name="sex" id="female" ><label for="male">女</label>
        </form>
    </body>
</html>

Guess you like

Origin blog.csdn.net/qym_2476103245/article/details/109755171