-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
60 lines (49 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS | Layout & Navigation Bar</title>
<meta name="description" content="Demo of Bootstrap by MWB">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="container">
<header>
<div id="left-pane">
<a>
<img src="img/logo.jpg" alt="Logo" width="75px" height="75px">
<span>Company Name</span>
</a>
</div>
<div id="right-pane">
<a href="#">Link1</a>
<a href="#">Link2</a>
</div>
</header>
<div class="clear"></div>
<nav>
<ul>
<li><a class="active" href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<section>
<strong>Content</strong>
</section>
<aside>
<ul><strong>Side Navigation</strong>
<li><a href="#">Service Type 1</a></li>
<li><a href="#">Service Type 2</a></li>
<li><a href="#">Service Type 3</a></li>
</ul>
</aside>
<div class="clear"></div>
<footer>
@2020 | Footer
</footer>
</div>
</body>
</html>