-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
56 lines (47 loc) · 1.27 KB
/
detail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Araç Detay</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css"
/>
</head>
<body>
<div
id="outlet"
style="max-width: 900px"
class="container my-5 d-flex flex-column gap-4 px-5"
>
<div class="d-flex justify-content-between fs-5">
<a href="/">
<img width="40px" src="/images/home.png" />
</a>
<p>Anasayfa / Binek /FİAT EGEA</p>
</div>
<h1 class="text-center my-3">FİAT EGEA</h1>
<img
src="http://127.0.0.1:5500/images/item-6.jpeg"
class="rounded object-fit-cover shadow"
alt="fiat egea"
/>
<h3 class="mt-4">
<span>Aracın Kategorisi:</span>
<span class="text-success">Binek</span>
</h3>
<h3 class="mt-4">
<span>Aracın Fiyatı:</span>
<span class="text-success">19.750₺</span>
</h3>
<p class="lead">
1.4 FIRE BZ 95 HP EASY Benzin EU6 D
</p>
</div>
<script type="module" src="./scripts/detail.js"></script>
</body>
</html>