|  | 
 
 发表于 2019-8-15 10:18:47
|
显示全部楼层 
| 交作业! 复制代码<!DOCTYPE html>
<html lang="en">
<head>
        <meta charset="UTF-8">
        <title>Tips</title>
        <style type="text/css">
                html{
                        background-image: url(../../img/bg_cat.jpg);
                        background-repeat: no-repeat;
                }
                body{
                        color: white
                }
        </style>
</head>
<body>
        <h1><font face="verdana">bilibili</font></h1>
        <p>
                <font size="5" face="arial" color="red">
                        B站交流学习
                </font>
        </p>
        <div>
                <font face="NSimSun" size="33" color="#FF8888">我能设置字体,大小和颜色</font><br>
                <b>
                        我是黑体
                </b><br>
                <i>
                        我是斜体
                </i><br>
                <u>
                        我是下划线
                </u><br>
                <s>
                        我是中划线
                </s><br>
                <hr>
                <img src="../../img/bg_sea.jpg" alt="大海">
                <hr size="20" width="50" align="left">
                <hr size="20" width="50" noshade="noshade">
                Time<sup>我是上标</sup>
                Wow<sub>我是下标</sub>
        </div>
</body>
</html>
 | 
 |