-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
191 lines (138 loc) · 5.08 KB
/
index.php
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!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>Car Valley</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="style1.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo">
<img src="logo.png" alt="">
</a>
<nav class="navbar">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#menu">menu</a>
<a href="#contact">contact</a>
<a href="index.html">login/signup</a>
</nav>
<div class="icons">
<div class="fas fa-shopping-cart" id="cart-btn"></div>
<div class="fas fa-bars" id="menu-btn"></div>
</div>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>drive your car, take your wheels home</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Placeat labore, sint cupiditate distinctio tempora reiciendis.</p>
<a href="#" class="btn">get yours now</a>
</div>
</section>
<!-- home section ends -->
<!-- about section starts -->
<section class="about" id="about">
<h1 class="heading"> <span>about</span> us </h1>
<div class="row">
<div class="image">
<img src="new9.jpeg" alt="">
</div>
<div class="content">
<h3>what makes us special?</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatibus qui ea ullam, enim tempora ipsum fuga alias quae ratione a officiis id temporibus autem? Quod nemo facilis cupiditate. Ex, vel?</p>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Odit amet enim quod veritatis, nihil voluptas culpa! Neque consectetur obcaecati sapiente?</p>
<a href="#" class="btn" id="abb">learn more</a>
</div>
</div>
</section>
<!-- about section ends -->
<!-- menu section starts -->
<section class="menu" id="menu">
<h1 class="heading"> our <span>menu</span> </h1>
<div class="box-container">
<div class="box">
<img src="new1.jpeg" alt="">
<h3>Brand And Luxury</h3>
<div class="price">$1790.98 <span>2000</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="new2.jpeg" alt="">
<h3>Brand And Luxury</h3>
<div class="price">$1790.98 <span>2000</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="new3.jpeg" alt="">
<h3>Brand And Luxury</h3>
<div class="price">$1790.98 <span>2000</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="new4.jpeg" alt="">
<h3>Brand And Luxury</h3>
<div class="price">$1790.98 <span>2000</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="new5.jpeg" alt="">
<h3>Brand And Luxury</h3>
<div class="price">$1790.98 <span>2000</span></div>
<a href="#" class="btn">add to cart</a>
</div>
<div class="box">
<img src="new6.jpeg" alt="">
<h3>Brand And Luxury</h3>
<div class="price">$1790.98 <span>2000</span></div>
<a href="#" class="btn">add to cart</a>
</div>
</div>
</section>
<!-- menu section ends -->
<!-- contact section starts -->
<section class="contact" id="contact">
<h1 class="heading"> <span>contact</span> us </h1>
<div class="row">
<img src="new11.jpeg" alt="">
<form action="">
<h3>get in touch</h3>
<div class="inputBox">
<span class="fas fa-user"></span>
<input type="text" placeholder="name">
</div>
<div class="inputBox">
<span class="fas fa-envelope"></span>
<input type="email" placeholder="email">
</div>
<div class="inputBox">
<span class="fas fa-phone"></span>
<input type="number" placeholder="number">
</div>
<input type="submit" value="contact now" class="btn">
</form>
</div>
</section>
<!-- contact section ends -->
<!-- footer section starts -->
<section class="footer">
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
</section>
<!-- footer section ends -->
<script src="script.js"></script>
<script src="app.js"></script>
</body>
</html>