-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.html
45 lines (25 loc) · 1.36 KB
/
3.html
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
39
40
41
42
43
44
45
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="utf-8">
<title>HEELO</title>
<link rel="stylesheet" type="text/css" href="mystyles.css">
</head>
<h1 style="text-align:center">居中对齐标题</h1>
<p>段落</p>
<body STYLE="background-color:yellow">
<a href="//www.baidu.com/" style="text-decoration:none;">百度</a><br/>
<a href="http://www.w3cschool.cn/" style="text-decoration:none;">(无下划线)访问 w3cschool.cn!</a>
<h2 style="background-color:red;">标题</h2>
<p style="color:blue;font-family:arial;font-size:50px;">段落</p>
<h2>hi</h2> <img border="0" src="https://www.google.com.hk/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="Pulpit rock" width="304" height="228">
<h3>nihao </h3>
<h4>默认对齐的图片(align="bottom")</h4>
<p>这是一些文本。 <img src="/statics/images/course/smiley.gif" alt="Smiley Face" align="bottom" width="32" height="32" </p>
<h4>图片使用align="middle"</h4>
<p>这是一些文本。 <img src="/statics/images/course/smiley.gif" alt="Smiley Face" align="middle" height="32" width="32" </p>
<h4>图片使用 align="top";</h4>
<P>这是一些文本。 <img src="/statics/images/course/smiley.gif" alt="Smiley Face" align="top" width="32" height="32" </P>
</body>
</html>