-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
67 lines (62 loc) · 2.71 KB
/
details.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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/e5a2b2fa25.js" crossorigin="anonymous"></script>
<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=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Dettagli prodotto</title>
</head>
<body>
<!--NAVBAR + BACKGROUND-->
<header>
<nav class="navbar navbar-light position-absolute w-100">
<div class="container-fluid">
<a class= "navbar-brand" href="#">
<img src="image/logo_black.png" alt="Logo_Marketplace" class="img-fluid">
</a>
</div>
</nav>
<div class="p-5 header-details-image"></div>
</header>
<!--end-->
<!--DETAIL SECTION-->
<div class="container border-top my-5">
<h3 class="my-3">Maggiori dettagli</h3>
<div class="d-flex justify-content-center d-none" id="loadingSpinner">
<div class="spinner-border" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<div class="row mt-5 g-3 mb-4">
<div class="col-12 col-md-4" id="imageProduct">
</div>
<div class="col-12 col-md-8">
<ul class="list-unstyled">
<li><h5 class="lato-bold fs-3"></h5></li>
<li><h6></h6></li>
<li><h6></h6></li>
<li><p class="lato-light"></p></li>
</ul>
</div>
</div>
</div>
<!--end-->
<!--FOOTER-->
<footer class="footer-background text-center fixed-bottom">
<!-- Copyright -->
<div class="text-center p-3">
<span class="span-footer">made for WDPT23 @</span>
<a class="text-body" href="https://epicode.com/it/"><span class="span-footer">Epicode.com</span></a>
</div>
<!-- Copyright -->
</footer>
<!--end-->
<script src="script_details.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>