头像

Snowing




离线:1天前


最近来访(341)
用户头像
南溟
用户头像
田所火材
用户头像
永不忘记
用户头像
雷霆尬拔
用户头像
林边人
用户头像
TaTaTa110
用户头像
山毛榉
用户头像
东旭٩๑o๑۶
用户头像
ÂЯËsWii
用户头像
luoshunran
用户头像
h.john
用户头像
叶落孤城
用户头像
haomiao
用户头像
Ifyoung
用户头像
DinBong-hhh
用户头像
金木樨
用户头像
不破爱花
用户头像
JsingMog
用户头像
love_snow
用户头像
Kellon

新鲜事 原文

Snowing
1个月前
刻晴🥰🥰🥰
图片 图片 图片 图片 图片 图片 图片 图片 图片


新鲜事 原文

Snowing
2个月前
焦虑难受,不知道该怎么办,有种无能为力的感觉😖😖
图片


活动打卡代码 工程课 Web-2.1. homework_1

Snowing
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>
    <style>
        div {
            color: white;
            width: 300px;
            height: 300px;
        }
        div:nth-child(2n + 1) {
            background-color: #0000FF;
        }
        div:nth-child(2n) {
            background-color: rgba(255, 0, 0, 0.7);
        }
        div.small-div {
            width: 200px;
            height: 200px;
        }
        #big-div {
            height: 400px;
            width: 400px;
        }
        div.hover-div:hover {
            background-color: orange;
        }
    </style>
</head>
<body>
    <div class="small-div">1</div>
    <div id="big-div">2</div>
    <div>3</div>
    <div class="small-div">4</div>
    <div class="small-div hover-div">5</div>
    <div>6</div>
    <div>7</div>
    <div class="hover-div">8</div>
    <div>9</div>
    <div>10</div>
</body>
</html>


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

Snowing
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>
    <p>&copy;&lt;Web&gt;版权所有</p>
</body>
</html>


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

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


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

Snowing
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>
    <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

Snowing
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>
            </ol>
        </li>
    </ol>
</body>
</html>


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

Snowing
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>
    <form action="/login.html">
        <label for="username">用户名</label>
        <input type="text" name="username" id="username" required minlength="3" maxlength="15" placeholder="用户名">

        <label for="age">年龄</label>
        <input type="number" name="age" id="age" required placeholder="年龄">

        <label for="email">邮箱</label>
        <input type="email" name="email" id="email" required placeholder="邮箱">

        <label for="password">密码</label>
        <input type="password" name="password" id="password" required placeholder="密码">

        <label for="resume">个人简介</label>
        <textarea name="resume" id="resume" placeholder="个人简介"></textarea>

        <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>
    </form>
</body>
</html>


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

Snowing
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>
    <a href="/about.html">About</a>
    <a target="_blank" href="https://www.acwing.com">
        <img src="/images/logo.png" width="50px" alt="logo">
    </a>
</body>
</html>


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

Snowing
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>
    <audio src="/audios/bgm.mp3" controls></audio>
    <video src="/videos/video2.mp4" width="600" controls></video>
</body>
</html>