forked from hyeon1017/testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 2.6 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 2.6 KB
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
64
65
66
67
68
69
70
71
72
73
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>dohyeon</title>
<style>
#topPage{
height:30px;
width:800px;
}
#topPage ul li {
list-style: none;
color: white;
background-color: darkgrey;
float: left;
line-height: 30px;
vertical-align: middle;
text-align: center;
}
#topPage .pageLink {
text-decoration: none;
color: white;
display: block;
width: 100px;
font-size: 12px;
font-weight: bold;
}
#topPage .pageLink:hover{
color: coral;
background-color:aqua;
}
#Contents{
margin-top: 10px;
margin-left: 40px;
}
</style>
</head>
<body>
<nav id="topPage">
<ul>
<li><a class="pageLink" href="index.hrml">dohyeon kim</a></li>
<li><a class="pageLink" href="">lolem</a></li>
<li><a class="pageLink" href="">ipsum</a></li>
<li><a class="pageLink" href="">alpha</a></li>
<li><a class="pageLink" href="">beta</a></li>
<li><a class="pageLink" href="">beta</a></li>
<li><a class="pageLink" href="">beta</a></li>
</ul>
</nav>
<div id="Contents">
<!--this is the part that you have to implement-->
<div id="img_holder">
<img style="float: left; width: 300px; height: 500px; "src="hyeon_photo.png">
<div style="float: left; margin-left: 10px" id="decription">
<p>
this is hte latest photo of me
</p>
<p>
If you want to see the photo I like,
Please go to <a href=""><strong>here</strong></a>!!!!
</p>
<br>
<br>
<br>
<h2>Interesting things about dohyeon</h2>
<ul>
<li>he alwys want to get some sleep</li>
<li>he like to play drum</li>
</ul>
</div>
</div>
</div>
</body>
</html>