-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (111 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<title>Civic</title>
</head>
<body>
<header id="header">
<div class="overlay">
<div id="nav-bar">
<div class="logo-img">
<img
id="header-img"
src="https://irp-cdn.multiscreensite.com/63180ab5/dms3rep/multi/mobile/honda-white-no-background.png"
alt=""
/>
</div>
<div class="menu">
<a href="#specs" class="nav-link">Specs</a>
<a href="#demo" class="nav-link">Demo</a>
<a href="#email" class="nav-link">Contact</a>
</div>
</div>
<div class="main-title">
<h1 class="animated fadeInDownBig">HONDA</h1>
<br />
<h1 class="animated zoomIn">CIVIC <span class="x">X</span> 2019</h1>
<br />
<h1 class="animated fadeInUpBig">LIMITED EDITION</h1>
</div>
</div>
</header>
<hr />
<div id="specs" class="specs-container">
<h1 class="specs-title">SPECIFICATIONS</h1>
<div class="specs-boxes">
<div class="spb1 spcc animated fadeInUp">
<i class="fa fa-3x fa-external-link"></i><br />
<h3>Exterior</h3>
<br />
<p>
Honda Civic 2019 exterior specifications include a brand new and
more aggressive design language
</p>
</div>
<div class="spb2 spcc animated fadeInUp">
<i class="fa fa-3x fa-arrow-down"></i><br />
<h3>Interior</h3>
<br />
<p>
The Honda Civic 2019 interior comprises of black and polished silver
plastic trim pieces.
</p>
</div>
<div class="spb3 spcc animated fadeInUp">
<i class="fa fa-3x fa-cogs"></i><br />
<h3>Engine</h3>
<br />
<p>
The 10th Generation Honda Civic is offered with a selection of 2
Engines
</p>
</div>
<div class="spb4 spcc animated fadeInUp">
<i class="fa fa-3x fa-paint-brush"></i><br />
<h3>Colors</h3>
<br />
<p>The Honda Civic is offered in a choice of 7 colors</p>
</div>
<div class="spb5 spcc animated fadeInUp">
<i class="fa fa-3x fa-users"></i><br />
<h3>Competitor</h3>
<br />
<p>
The main competitor of Honda Civic 2019 are Toyota Corolla Altis
Grande and Toyota Prius.
</p>
</div>
<div class="spb6 spcc animated fadeInUp">
<i class="fa fa-3x fa-thumbs-up"></i><br />
<h3>Pros & Cons</h3>
<br />
<p>Civi is quite economical compared to Honda Accord</p>
</div>
</div>
</div>
<div id="demo" class="video-container">
<iframe
src="https://www.youtube.com/embed/tiTspPHwPUY"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
></iframe>
</div>
<div class="form-container">
<form action="https://www.freecodecamp.com/email-submit" method="GET">
<h1 class="contactus-text">Contact Us</h1>
<div class="form-inputs">
<input
class="email-box"
placeholder="Email Here"
type="email"
id="email"
/>
<input class="btn" type="submit" value="Send" />
</div>
</form>
</div>
</body>
</html>