forked from OS-ABC/HelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1900022816
38 lines (35 loc) · 1.23 KB
/
1900022816
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# 20191022
* 学习git使用,doc文件上传至课堂派。
* 简单的了解了html,实现了一个网页
* 网页源码如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>这是我第一个网站</title>
</head>
<body style="background:url(src/bg.jpg) no-repeat,center 0 ;">
<p style="font-family:Arial, Helvetica, sans-serif;
color:white;font-size: 30px;text-align:center;">
10:33 </p>
<p style="font-family: Arial;color: cornsilk;font-size: 40px; text-align: center;">My Sweet Home</p>
<p>这是另一个段落</p>
<p style="color: blue;margin-left:20px;">这是一个彩色的段落</p>
<!-- <p>我的母亲有<span style="color: blue;">蓝色</span>的眼睛</p> -->
<!-- <img src="src/desk.jpg" width="960" height="520" usemap="#baidumap">
<map name="baidumap">
<area shape="circle" coords="480,260,100" href="https://www.baidu.com/" alt="None">
</map> -->
<div width="960" height="520"></div>
<table >
<tr>
<td><img src="src/desk.jpg" width="960" height="520"></td>
<td><img src="src/desk.jpg" width="960" height="520"></td>
</tr>
<tr>
<td><img src="src/desk.jpg" width="960" height="520"></td>
<td><img src="src/desk.jpg" width="960" height="520"></td>
</tr>
</table>
</body>
</html>