-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyPage.html
44 lines (41 loc) · 1.05 KB
/
myPage.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
<!DOCTYPE html>
<html>
<head>
<title>Bong's page</title>
<style>
h1{
margin: 0px;
text-align: center;
padding-bottom: 10px;
border-bottom: 3px solid black;
}
div#LeftVerticalList{
width: 130px;
margin: 0px;
display: inline-block;
border: 0px;
border-right: 3px solid black;
}
div#paragraphDiv{
width: 500px;
margin: 0px;
display: inline-block;
}
</style>
</head>
<body>
<h1>Bong's page</h1>
<div id="LeftVerticalList">
<ul class="VerticalMenu">
<li>Home</li>
<li><a href="tetrisPage.html">Tetris</a></li>
<li>To-do list</li>
</ul>
</div>
<div id="paragraphDiv">
<p>
here is your Paragraph.
</p>
</div>
</body>
</html>