-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (96 loc) · 4.51 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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">
<title>Roar Cycle - Bike Repairs in Dublin</title>
<!-- This is Eric Meyers CSS reset -->
<link rel="stylesheet" href="css-reset.css">
<!-- This is my own style sheet -->
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Roboto:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<header>
<div class="logo">
<a href="index.html">
<img src="/images/logo-roar-bikes.svg" alt="Roar Bikes Logo">
</a>
</div>
<nav>
<div class="navbutton">
<a href="#">BOOK ONLINE</a>
<div class="dropdown">
<div class="navbutton"><a href="#">Parts Delivery</a></div>
<div class="navbutton"><a href="#">Request Callback</a></div>
<div class="navbutton"><a href="#">Onsite Service</a></div>
</div>
</div>
<div class="navbutton">
<a href="#">About</a>
</div>
<div class="navbutton">
<a href="contact-us.html">Contact</a>
</div>
</nav>
</header>
<main>
<div class="herobox1">
<h1>Mobile bike repairs.</h1>
<p>Many people have difficulty getting their bikes to a bike shop. We call to your office or home anywhere in greater Dublin.</p>
<p>Fast, convenient bike servicing with up-front pricing. All without the hassle of taking your bike into a shop.
</p>
<a href="test-page.html" class="mybutton">Book Online</a>
</div>
<div class="herobox2">
<img src="images/image-bike-repair-service.jpg" alt="person servicing a bike in dublin">
</div>
</main>
<div class="cards">
<div class="card1">
<a href="#">
<i class="fas fa-motorcycle"></i>
<h2>Book Online</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas distinctio odio a at accusantium suscipit.</p>
</a>
</div>
<div class="card2">
<a href="#">
<i class="fas fa-cog"></i>
<h2>Service Types</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas distinctio odio a at accusantium suscipit.</p>
</a>
</div>
<div class="card3">
<a href="#">
<i class="fas fa-phone"></i>
<h2>Call for Advice</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas distinctio odio a at accusantium suscipit.</p>
</a>
</div>
</div>
<div class="testimonials">
<div class="tbox">
<p>"I would like to personally thank you for your outstanding product. You guys rock! It's all good. I can't say enough about Roar Cycles."</p>
<p>- Tamara I.</p>
</div>
<div class="tbox">
<p>"Roar Cycles is the most valuable business resource we have EVER purchased. I will let my mum know about this, she could really make use of Roar Cycles! Roar Cycles has completely surpassed our expectations."
</p>
<p>- Floris V.</p>
</div>
<div class="tbox">
<p>"I'm good to go. Roar Cycles is both attractive and highly adaptable. I will refer everyone I know."</p>
<p>- Carlin B.</p>
</div>
<div class="tbox">
<p>"Roar Cycles impressed me on multiple levels. I would gladly pay over 600 dollars for Roar Cycles. We can't understand how we've been living without Roar Cycles."</p>
<p>- Eve V.</p>
</div>
</div>
</div>
</body>
</html>