-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 732 Bytes
/
Copy pathindex.html
File metadata and controls
37 lines (33 loc) · 732 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Website Development</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header class="header">
<!--<nav class="navbar navbar-style">-->
<div class="main">
<div class="logo">
<img src="logo.jpg">
<div>
<ul>
<li class="active"> <a href="#">Home </a></li>
<li> <a href="#">Contact </a></li>
<li> <a href="#">Services </a></li>
<li> <a href="#">Signup </a></li>
<li> <a href="#">Login </a></li>
</ul>
</div>
</div>
</nav>
<div class="title">
<h1>Creating A WebPage</h1>
</div>
<div class="button">
<a href="#" class="btn">Watch Video</a>
<a href="#" class="btn">Learn More About Us</a>
</div>
</header>
</body>
</html>