-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
executable file
·64 lines (61 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Shopping Cart</title>
</head>
<body>
<header>
<div class="overlay"></div>
<nav>
<h2>SHOP</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li class="cart">
<a href="cart.html">
<ion-icon name="basket"></ion-icon>Cart<span>0</span>
</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<div class="image">
<img src="images/greytshirt.jpg" alt="thsirt1">
<h3>Grey Tshirt</h3>
<h3>$15,00</h3>
<a class="add-cart cart1" href="#">Add Cart</a>
<input type="hidden" value="15" />
</div>
<div class="image">
<img src="images/greyhoddie.jpg" alt="thsirt1">
<h3>Grey Hoddie</h3>
<h3>$20,00</h3>
<a class="add-cart cart2" href="#">Add Cart</a>
<input type="hidden" value="20" />
</div>
<div class="image">
<img src="images/blacktshirt.jpg" alt="thsirt1">
<h3>Black Tshirt</h3>
<h3>$10,00</h3>
<a class="add-cart cart3" href="#">Add Cart</a>
<input type="hidden" value="15" />
</div>
<div class="image">
<img src="images/blackhoddie.jpg" alt="thsirt1">
<h3>Black Hoddie</h3>
<h3>$25,00</h3>
<a class="add-cart cart4" href="#">Add Cart</a>
<input type="hidden" value="20" />
</div>
</div>
<script src="main.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>