-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
53 lines (43 loc) · 1.36 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Week 6 Examples</title>
<meta charset="utf-8" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<!--favicon -->
<link rel="shortcut icon" href="images/favicon.ico" />
<!-- CSS -->
<link rel="stylesheet" href="stylesheets/style.css" />
<!-- Scripts -->
<script type="text/javascript" src="scripts/javascript.js"></script>
</head>
<body>
<header>
<div class="container">
<img class="logo" src="images/logo.png" alt="logo" title="logo" />
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
<main class="container">
<h1>COMING SOON!</h1>
</main>
<footer class="container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</footer>
</body>
</html>