-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
63 lines (56 loc) · 980 Bytes
/
Contact.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<html>
<head>
<title>Welcome to QIAO Dong's Homepage!</title>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
<style type='text/css'>
body,div,h1,table,tr,td,a {
margin:0px;
padding:0px;
font-family:TIMES NEW ROMAN;
}
div {
float:left;
}
div#main {
width:800px;
height:800px;
border:0px solid purple;
float:none;
margin:auto;
}
div.item {
width:800px;
height:100px;
border:0px solid red;
float:left;
}
div#headbar {
width:800px;
height:150px;
border:0px solid red;
background-color:#0B1A55;
float:left;
}
a {
color:white;
text-decoration:none;
display:block;
text-align:center;
background-color:#E01737;
}
div#bottom {
width:800px;
height:50px;
background-color:#0B1A55;
}
</style>
</head>
<body>
<div id = 'content' style = 'line-height:150%;'>
<h2 style = 'margin:0px;'>Contact Me</h2>
<ul>
<li>Email: d.qiao [at] qq [dot] com</li>
</ul>
</div>
</body>
</html>