-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (99 loc) · 3.78 KB
/
index.html
File metadata and controls
111 lines (99 loc) · 3.78 KB
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
<!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="./css/main.css">
<link rel="stylesheet" href="/css/normalize_rest.css">
<link rel="icon" type="image/x-icon" href="./img/logo.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Heebo:wght@200&family=Montserrat:ital,wght@0,100;1,700&display=swap" rel="stylesheet">
<title>Auto master</title>
</head>
<body>
<div class="hero">
<div>
<img src="./img/logo.svg" alt="logo">
</div>
</div>
<nav>
<ul>
<li><a href="#first">Home</a></li>
<li><a href="#second">Our work</a></li>
<li><a href="#third">About</a></li>
<li><a href="#book">Contact</a></li>
</ul>
</nav>
<section id="first">
<h1>Auto Master</h1>
<h6>Professional mechanic</h6>
<picture class="showcase__image">
<source media="(min-width: 768px)" srcset="/img/hero.png">
<img src="./img/main1.svg">
</picture>
<picture>
</picture>
</section>
<section id="second">
<h4>Owr work</h4>
<div class="showcase_grid1">
<div class="div1">
<img src="./img/1.jpeg" alt="">
</div>
<div class="div2">
<img src="./img/2.jpeg" alt="">
</div>
<div class="div3">
<img src="./img/3.jpeg" alt="">
</div>
</div>
</section>
<section id="third">
<div class="showcase_about">
<div class="div4">
<h4>About us</h4>
<p>Lorem ipsum dolor sit,<br> amet consectetur<br> adipisicing elit.<br> Debitis, accusamus tempore.<br> Aliquid labore fugiat quod impedit aut atque<br> at ea eos non nam necessitatibus<br> inventore in blanditiis<br> rem adipisci quidem<br> modi reiciendis,<br> sunt incidunt,<br> voluptates veritatis odio optio? Amet <br>sequi ipsa enim nulla vel iusto repudiandae,<br> quos rem accusantium quo?</p>
</div>
<div class="div5">
<img src="./img/13.svg" alt="">
</div>
</div>
</section>
<section id="book">
<div class="showcase_book">
<div class="book_service">
<h4>Book a car service</h4>
<form action="" class="booking">
<input type="date" value="01/02/2023" placeholder="01/01/2023">
<input type="text" id="name" name="name" placeholder=" Enter name">
<input type="email" name="email" id="email" placeholder=" Enter email">
<input type="text" name="phone" id="phone" placeholder=" Enter phone number">
<input type="submit" value="Submit" class="submit"><input type="reset" value="Reset">
</form> </div>
</div>
</div>
<div class='road'>
<div class='taxi'>
<div class='light-beam'></div>
<span>
<b></b>
<i></i>
</span>
</div>
<div class='taxi'>
<div class='light-beam'></div>
<span>
<b></b>
<i></i>
</span>
</div>
</div>
</section>
<div class="footer">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<p>All right reserved © 2023 Auto Master</p>
</div>
</body>
</html>