-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.23 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
<!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">
<!-- CSS Stylesheet -->
<link rel="stylesheet" type="text/css" href="./css/style.css">
<!-- Favicon -->
<link rel="shortcut icon" href="./img/favicon.png">
<title>SHAPE | Shop</title>
</head>
<body>
<!-- Centers the actual box -->
<div class="wrapper">
<!-- The actual product box -->
<div class="box">
<!-- Contains product images -->
<div class="productImage"></div>
<!-- Contains all the details and options -->
<div class="info">
<h1>iPhone 7 (16 GB)</h1>
<p>A brand new phone made by Apple.<br>Pick the color you like.</p>
<div class="swatches">
<div class="swatch jetblack"></div>
<div class="swatch black"></div>
<div class="swatch silver"></div>
<div class="swatch rosegold"></div>
<div class="swatch gold"></div>
</div>
<h3><span>999.99€</span> 699.99€</h3>
<button>Buy Now</button>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="./js/main.js" charset="utf-8"></script>
</body>
</html>