-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
67 lines (58 loc) · 2.17 KB
/
main.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
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="main.css">
<title>Highland Plumbing</title>
</head>
<body>
<header>
<div class="logo">Highland Plumbing</div>
<div class="toggle"></div>
<div class="navigation">
<ul>
<li><a href="main.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="socail-bar">
<ul>
<li>
<a href="https://facebook.com" target="_blank">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://instagram.com" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<a href="mailto:[email protected]" class="email-icon" target="_blank">
<i class="fas fa-at"></i>
</a>
</div>
</div>
</header>
<section>
<img src="/img/plum.jpg" alt="/img/gym.jpg" class="home-img">
<div class="home-content">
<h1>We help achieve <br> your fitness gaols</h1>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Natus, deserunt?
</p>
<a href="Contact.html" class="btn"><i class="fas fa-dumbbell"></i>Get Started</a>
</div>
</section>
<script src="script.js"></script>
</body>
</html>