-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (50 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automotive Car Design</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"/>
</head>
<body>
<header>
<nav class="container">
<div class="logo">
<i class="fas fa-car"></i> Automotive
</div>
<ul>
<li><a href="#" class="selected">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Price</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#" class="highlight">Book Appointment</a></li>
</ul>
</nav>
<div class="content">
<div class="container">
<h1>Your Car Repairs</h1>
<p>Visit us for your service</p>
<a class="highlight" href="#">Book Appointment</a>
</div>
</div>
</header>
<footer>
<ul class="container">
<li>
<strong>Our Location</strong>
<p>15 Street Suburt Country 6000</p>
</li>
<li>
<strong>Phone</strong>
<p>+61 040 400 4000</p>
</li>
<li>
<strong>Email</strong>
<p>Automotivecar@gmail.com</p>
</li>
</ul>
</footer>
<!-- 14:43 -->
</body>
</html>