-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.47 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Design - Bill Evanson Construction</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
<script src="https://kit.fontawesome.com/a80e2df8e5.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="top-header">
<div class="icons">
<i class="fa fa-linkedin"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-facebook"></i>
</div>
<div class="stamp">
<i class="fa fa-clock-o"></i>
<i class="fa fa-envelope-o"></i>
<i class="fa fa-phone fa-flip-horizontal"></i>
</div>
</div>
<div class="header">
<nav>
<div class="logo">
<img src="images/logoBig.png" width="210px" height="81px">
</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">What We Do</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="content">
<h1 class="slide-left">Over<br>1000</h1>
<p class="slide-left">Housing Units Constructed</p>
</div>
</div>
</body>
</html>