html学习代码留存_看的影刀B站视频

html学习代码留存

<!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>Djkadj</title>
    <style>
        .top img{
            width: 100px;
            height: 100px;
        }
    </style>
</head>
<body>
    <h1>标题1</h1>
    <h2>标题2</h2>
    <p>Lorem <b> dolor sit amet consectetur</b>, adipisicing elit. Maiores, nemo.</p>
    <a href="https://www.baidu.com/" target="_blank">百度</a>
    <div class="top">
        <img src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fsafe-img.xhscdn.com%2Fbw1%2F54dff091-ffc5-4665-bdf3-306c274cc05b%3FimageView2%2F2%2Fw%2F1080%2Fformat%2Fjpg&refer=http%3A%2F%2Fsafe-img.xhscdn.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1700552278&t=ba47d3247358521ee5bf16732c7d680e" alt="失效了">
    </div>
    <video 
        source src="" type="" />
    </video>
    <audio src=""></audio>
    <ul>
        <li>list1</li>
        <li>list2</li>
        <li>list3</li>
    </ul>
    <ol>
        <li>list1</li>
        <li>list2</li>
        <li>list3</li>
    </ol>
    <TABLE border="1">
        <thead>
            <tr>
                <th>姓名</th>
                <th>年龄</th>
                <th>性别</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>李四</td>
                <td>19</td>
                <td></td>
            </tr>
            <tr>
                <td>王五</td>
                <td>20</td>
                <td></td>
            </tr>
        </tbody>
    </TABLE>
    <input type="radio" name="性别"/><input type="radio" name="性别"/><select name="" id="">
        <option value="">test1</option>
        <option value="">test2</option>
        <option value="">test3</option>
    </select>
    <div></div>
    <span></span>
</body>
</html>

你可能感兴趣的:(学习)