-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (59 loc) · 1.61 KB
/
index.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
64
65
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
.main{
margin-left: 200px;
margin-top: 40px;
border:3px solid blue;
width:1000px;
height:350px;
}
.navbar{
width:230px;
height:260px;
float:left;
border:2px solid green;
}
.section .one{
margin-left: 230px;
border:2px solid red;
height:175px;
}
.section .two{
margin-left: 230px;
border:2px solid red;
height:171px;
}
</style>
<body>
<div class="main">
<div class="nav">
<div class="navbar">
<a href="home.html">Home</a><br>
<a href="about.html">About</a><br>
<a href ="contact.html">Contact</a>
</div>
</div>
<div class="section">
<div class="one">
<h3>header</h3>
<h5>Hello i am section one</h5>
</div>
<div class="two">
<h3>main</h3>
<h5>Hello i am section two</h5>
</div>
</div>
</div>
</body>
</html>