黑马程序员P8-P14

<!-- 文档类型为html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>关于2024年全国硕士研究生招生考试青山校区调停课的通知</title>
    <!--1、内嵌样式 -->
    <style>
        h1{
            color: darkred;
        }

        /* 元素选择器(优先级第三) */
        /* span{
            color: black;
        } */
        /* 类选择器(优先级第二) */
        .cls{
            color: dimgray;
        }
        /* ID选择器(优先级第一) */
        #time{
            color: dimgray;
            font-size: 15px; /*设置字体大小 */
        }

        a {
            color:chocolate;
            text-decoration-line: none;  /* 取消下划线 */
        }

        p{
            text-indent: 35px;/* 首行缩进 */
            line-height: 40px;/* 设置行高 */
        }
        #last{
           text-align: right; /* 对齐方式 */
        }

        #center{
            width: 65%;
            /* margin:0% 17.5% 0% 17.5% ; 外边距 (上、右、下、左) */
            margin: 0 auto;/*与上一条语句等价 */
        }

    </style>

    <!-- 外联样式 -->
    <!-- <link rel="stylesheet" href="./css/new.css"> -->
</head>
<body>
    <div id="center">
    <img src="picture5.jpg" width="50px" height="50px"> <a href="https://jwc.wust.edu.cn/index.htm" target="_blank">武汉科技大学本科教学</a>
    <!-- 2、行内样式  -->
    <!-- <h1 style="color: darkred;">关于2024年全国硕士研究生招生考试青山校区调停课的通知</h1> -->
    <h1>关于2024年全国硕士研究生招生考试青山校区调停课的通知</h1>
    <hr>
    <span id="time">发布时间:2023年12月18日 10:35</span> 
    <span class="cls">发布者:武汉科技大学本科教学</span> 
    <span class="cls">浏览次数:108</span>
    <hr/>

    <!-- 正文 -->
    <video src="video.mov" controls width="250px" height="350px"></video>
    <audio src="music.mp3" controls></audio><br>
    各教学单位、各位老师、各位同学:<br>
    <p>2024年全国硕士研究生招生考试将于<b>2023年12月23日~24日(周六、周日)</b>举行,武汉科技大学考点考场设置在青山校区主楼1~5楼、教三楼1~5楼、教四楼附楼2楼、图书馆4~7楼。

        按照湖北省教育考试院要求,为确保考试顺利进行,<strong>2023年12月22日(周五)下午16时~24日(周日)下午18时</strong>,青山校区主楼、教三楼、教四楼附楼、图书馆实行封闭管理,期间所有教室停课、实验室不开放、办公室停止对外办公,请做好相应工作安排。
        
        2023年12月25日上午8点整至下午15点整,主楼4楼0412、0413两个教室停课并实行封闭管理。</p>
    <img src="picture3.jpg" alt="" height="300px" width="300px">
    <p>以上封楼停课时间内,受到影响的课程,请任课教师先与学生商定好时间,再直接通过本科教学综合管理系统提交教室借用申请,待教务管理办公室审核通过后,使用分配的教室。</p>
    
    <p>特此通知!</p>
    <p id="last">本科生院</p>
    <p id="last">2023年12月18日</p>

    <a href="https://jwc.wust.edu.cn/info/1371/40312.htm" target="_self">查看原文</a>
</div>
</body>
</html>

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <table border="1px" cellspacing="0" width="600px">
        <tr>
            <th>序号</th>
            <th>名字</th>
            <th>照片</th>
            <th>年龄</th>
        </tr>
        <tr>
            <td>1</td>
            <td>小明</td>
            <td><img src="picture4.jpg" height="50px"></td>
            <td>18</td>
        </tr>
        <tr>
            <td>2</td>
            <td>小美</td>
            <td><img src="picture5.jpg" height="50px"></td>
            <td>16</td>
        </tr>
    </table>

<br><br><br><br><br>

    <form action="" method="post">
        用户名:<input type="text" name="username">
        年龄:<input type="text" name="age">
        <input type="submit" value="提交">
    </form><br><br><br><br><br>

    <form action="" method="post">
        姓名:<input type="text" name="name"><br><br>
        密码:<input type="password" name="password"><br><br>
        性别:<label><input type="radio" name="gender" value="1">男</label>
            <label><input type="radio" name="gender" value="2">女</label><br><br>
        爱好:<label><input type="checkbox" name="hobby" value="java">java</label>
            <label><input type="checkbox" name="hobby" value="game">game</label>
            <label><input type="checkbox" name="hobby" value="sing">sing</label><br><br>
        图像:<input type="file" name="image"><br><br>
        生日:<input type="date" name="birthday"><br><br>
        时间:<input type="time" name="time"><br><br>
        日期时间:<input type="datetime-local" name="datetime"><br><br>
        邮箱:<input type="email" name="email"><br><br>
        年龄:<input type="number" name="age"><br><br>
        学历:<select name="degree">
            <option value="">------请选择------</option>
            <option value="1">大专</option>
            <option value="2">本科</option>
            <option value="3">硕士</option>
            <option value="4">博士</option>
        </select><br><br>
        描述:<textarea name="description" cols="30" rows="10"></textarea><br><br>
        <input type="hidden" name="id" value="1">

        <input type="button" value="按钮">
        <input type="reset" value="重置">
        <input type="submit" value="提交">
    </form>
</body>
</html>

  • 9
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值