0
点赞
收藏
分享

微信扫一扫

html实现今日小说排行榜练习

案例:使用html实现下列效果

html实现今日小说排行榜练习_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>

    <h2 align="center">今日小说排行榜</h2>

    <table align="center" border="1px">

        <tr align="center" bgcolor="lightgray">

            <th width="100px">排名</th>

            <th width="100px">关键词</th>

            <th width="100px">趋势</th>

            <th width="100px">今日搜索</th>

            <th width="100px">最近七日</th>

            <th width="200px">相关链接</th>

        </tr>

        <tr bgcolor="white" align="center">

            <th>1</th>

            <td>武动乾坤</td>

            <td><img src="up.jpg"></td>

            <td>623557</td>

            <td>4088311</td>

            <td><a href="https://tieba.baidu.com/index.html">贴吧</a> <a href="https://image.baidu.com/">图片</a> <a href="https://baike.baidu.com/">百科</a></td>

        </tr>

        <tr bgcolor="white" align="center">

            <th>2</th>

            <td>武动乾坤</td>

            <td><img src="up.jpg"></td>

            <td>623557</td>

            <td>4088311</td>

            <td><a href="https://tieba.baidu.com/index.html">贴吧</a> <a href="https://image.baidu.com/">图片</a> <a href="https://baike.baidu.com/">百科</a></td>

        </tr>

        <tr bgcolor="white" align="center">

            <th>3</th>

            <td>武动乾坤</td>

            <td><img src="up.jpg"></td>

            <td>623557</td>

            <td>4088311</td>

            <td><a href="https://tieba.baidu.com/index.html">贴吧</a> <a href="https://image.baidu.com/">图片</a> <a href="https://baike.baidu.com/">百科</a></td>

        </tr>

        <tr bgcolor="white" align="center">

            <th>4</th>

            <td>武动乾坤</td>

            <td><img src="down.jpg"></td>

            <td>623557</td>

            <td>4088311</td>

            <td><a href="https://tieba.baidu.com/index.html">贴吧</a> <a href="https://image.baidu.com/">图片</a> <a href="https://baike.baidu.com/">百科</a></td>

        </tr>

        <tr bgcolor="white" align="center">

            <th>5</th>

            <td>武动乾坤</td>

            <td><img src="up.jpg"></td>

            <td>623557</td>

            <td>4088311</td>

            <td><a href="https://tieba.baidu.com/index.html">贴吧</a> <a href="https://image.baidu.com/">图片</a> <a href="https://baike.baidu.com/">百科</a></td>

        </tr>

        <tr bgcolor="white" align="center">

            <th>6</th>

            <td>武动乾坤</td>

            <td><img src="down.jpg"></td>

            <td>623557</td>

            <td>4088311</td>

            <td><a href="https://tieba.baidu.com/index.html">贴吧</a> <a href="https://image.baidu.com/">图片</a> <a href="https://baike.baidu.com/">百科</a></td>

        </tr>

    </table>

</body>

</html>

举报

相关推荐

0 条评论