-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
64 lines (64 loc) · 2.49 KB
/
cart.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Visit our online shop cart section, and come get your vinyls.">
<meta name="keywords" content="Vinyl Records-come check our vinyls out.">
<meta name="author" content="Marija Vučićević">
<link rel="shortcut icon" href="img/favIcon.png" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Vinyl Records | Cart</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link href="css/all.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="placeholder">
<div class="parallax-window" data-parallax="scroll" data-image-src="img/bgImage.jpg">
<div class="tm-header">
<div class="row tm-header-inner">
<div class="col-md-6 col-12">
<div class="tm-site-text-box">
<a href="index.html"><h1 class="tm-site-title">Vinyl Records</h1></a>
<h6 class="tm-site-description">shop new/old vinyls now</h6>
</div>
</div>
<nav class="col-md-6 col-12 tm-nav">
<!-- meni -->
<ul class="tm-nav-ul col-12" id="menu">
</ul>
<!-- kraj menija -->
</nav>
</div>
</div>
</div>
</div>
<div class="container table-responsive-sm">
<div class="col-12">
<h2 class="my-5 tm-section-title text-center">-Here are the albums you choose-</h2>
<h4 id="cartEmpty" class="alert text-center mt-5"></h4>
</div>
<!-- ispis tabele -->
<div id="cartWrite">
<!-- ispis tabele kraj -->
</div>
</div>
<footer class="tm-footer text-center">
<p>Marija Vučičević 18/19 ©
| <a href="https://www.ict.edu.rs/" target="_blank">Visoka ICT Škola</a></p>
<!-- icons -->
<p id="socialIcons">
</p>
<!-- ikonice kraj -->
</footer>
</div>
<!-- script fajlovi -->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/parallax.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
</body>
</html>