头像

招財進寶




离线:7天前


最近来访(0)


AcWing《算法基础课》拼团优惠!https://www.acwing.com/activity/content/introduction/11/group_buy/149744/



新鲜事 原文

AcWing《算法基础课》拼团优惠!https://www.acwing.com/activity/content/introduction/11/group_buy/149744/


活动打卡代码 工程课 Web-1.10. homework_10

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    &copy;&lt;Web&gt;版权所有

</body>

</html>


活动打卡代码 工程课 Web-1.9. homework_9

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <header>
        <h3>我的收藏夹</h3>
    </header>
    <section>
        <h4>图片</h4>
        <figure><img src="static/images/logo.png" width="100px" alt="logo"></figure>
        <figcaption>logo</figcaption>
        <figure><img src="static/images/mountain.jpg" width="100px" alt="mountain"></figure>
        <figcaption>山</figcaption>
    </section>
    <section>
        <h4>古诗</h4>
        <article>
            <h5>春晓</h5>
            <p>
                春眠不觉晓,处处闻啼鸟。夜来风雨声,花落知多少。
            </p>
        </article>
        <article>
            <h5>咏柳</h5>
            <p>碧玉妆成一树高,万条垂下绿丝绦。不知细叶谁裁出,二月春风似剪刀。</p>
        </article>
    </section>
    <footer>
        &copy;2018-2022 Me版权所有
    </footer>
</body>

</html>


活动打卡代码 工程课 Web-1.8. homework_8

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <table>
        <caption>成绩单</caption>
        <thead>
            <tr>
                <th>姓名</th>
                <th>数学</th>
                <th>语文</th>
                <th>英语</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Alice</td>
                <td>100</td>
                <td>99</td>
                <td>98</td>
            </tr>
            <tr>
                <td>Bob</td>
                <td>99</td>
                <td>98</td>
                <td>97</td>
            </tr>
            <tr>
                <td>Tom</td>
                <td>98</td>
                <td>97</td>
                <td>96</td>
            </tr>
        </tbody>
    </table>
</body>

</html>


活动打卡代码 工程课 Web-1.7. homework_7

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <ol>
        <li>第一讲</li>
        <li>
            第二讲
            <ul>
                <li>第一小节</li>
                <li>第二小节</li>
                <li>第三小节</li>
            </ul>
        </li>
        <li>
            第三讲
            <ol>
                <li>第一小节</li>
                <li>第二小节</li>
                <li>第三小节</li>
        </li>
    </ol>

</body>

</html>


活动打卡代码 工程课 Web-1.6. homework_6

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <label for="username">用户名</label>
    <input required type="text" name="username" id="username" minlength="3" maxlength="15" placeholder="用户名">
    <br>
    <label for="age">年龄</label>
    <input required type="number" name="age" id="age" placeholder="年龄">
    <br>
    <label for="email">邮箱</label>
    <input required type="email" name="email" id="email" placeholder="邮箱">
    <br>
    <label for="password">密码</label>
    <input required type="password" name="password" id="password" placeholder="密码">
    <br>
    <label for="resume">个人简介</label>
    <textarea name="resume" id="resume" placeholder="个人简介"></textarea>
    <br>
    <label for="lang">语言</label>
    <select name="lang" id="lang">
        <option value="Cpp">Cpp</option>
        <option value="Java">Java</option>
        <option value="Python">Python</option>
    </select>
    <button type="submit">提交</button>
</body>

</html>


活动打卡代码 工程课 Web-1.5. homework_5

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <a href="about.html">About</a>
    <a href="https://www.acwing.com" target="_blank">
        <img src="/static/images/logo.png" alt="logo" width="50px"></a>
</body>

</html>


活动打卡代码 工程课 Web-1.4. homework_4

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <audio controls src="/static/audios/bgm.mp3"></audio>
    <video controls src="/static/videos/video2.mp4" width="600"></video>
</body>

</html>


活动打卡代码 工程课 Web-1.3. homework_3

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <img src="/static/images/mountain.jpg" alt="山" width="600">
</body>

</html>