-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (80 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<!-- Google Fonts -->
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Bootstrap Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
</head>
<body>
<header class="header fixed-top">
<div
class="d-flex flex-sm-row flex-column justify-content-evenly align-items-center py-2"
>
<h3 class="fw-bold m-0 p-0">Car Model Facts</h3>
<input
placeholder="Enter car make and model"
id="inputFilter"
class="ps-2"
/>
</div>
</header>
<!-- container -->
<div class="mt-5 px-2 pt-sm-0 pt-5">
<!-- down icon -->
<div class="text-center">
<i class="bi bi-arrow-down-square-fill fs-1" id="down"></i>
</div>
</div>
<!-- carDiv icon -->
<div
class="d-flex justify-content-between d-none border border-2 border-bottom-0 border-secondary mx-auto"
id="iconDiv"
>
<h4
class="text-white fw-bold fs-5 pt-3 mx-auto mb-3 mb-sm-0"
id="model"
></h4>
<div class="top-0 end-0">
<i class="bi bi-x fs-1" id="closeIcon"></i>
</div>
</div>
<!-- car-details -->
<div
class="d-none d-flex flex-column flex-md-row justify-content-between align-items-center border border-2 border-top-0 border-secondary mb-5 mx-auto"
id="detailsDiv"
;
></div>
<!-- cars -->
<div
class="container d-flex justify-content-center gap-2 flex-wrap mt-sm-0 mt-3"
id="cars"
></div>
<!-- up icon -->
<div class="text-center">
<i class="bi bi-arrow-up-square-fill fs-1" id="up"></i>
</div>
<!-- container sonu -->
<!-- JavaScript dosyasının yolu -->
<script src="script.js"></script>
</body>
</html>