-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
70 lines (65 loc) · 3.84 KB
/
shop.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
68
69
70
<!DOCTYPE html>
<html>
<head>
<title> Shop </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Karina Kozarova">
<link rel="stylesheet" type="text/css" href="style/zoom.css">
<link rel="stylesheet" type="text/css" href="style/cool_button.css">
<link rel="stylesheet" href="style/navbar.css">
<link rel="stylesheet" href="style/bootstrap.css">
<link href="https://fonts.googleapis.com/css?family=Bellefair" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./style/shop.css">
</head>
<body>
<div id="navbar">
<a href = ""> <div class="zoom" style = "font-size: 150%;">HealthCalcMe</div> </a>
<div style="float: right;">
<a href="./empty_page_with_navbar.html"> <div class="zoom">LANDING PAGE</div></a>
<a href="./shop.html"><div class="zoom">SHOP</div></a>
<a href="./calculators.html"><div class="zoom">CALCULATORS</div></a>
<a href = "./nutrition.html"><div class="zoom"> NUTRITION </div></a>
</div>
</div>
<br>
<h1> Shop </h1>
<!-- First Photo Grid-->
<div class="row-padding space-bottom" >
<div class="third container margin-bottom space-bottom">
<img src="./resources/1.jpg">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.<br> <br> <a onclick="buy_item();" class="cool_button fontier displayer" ">Buy now</a> <br> </p>
</div>
<div class="third container margin-bottom space-bottom">
<img src="./resources/2.png">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.<br> <br> <a onclick="buy_item();" class="cool_button fontier displayer">Buy now</a> <br> </p>
</div>
<div class="third container space-bottom">
<img src="./resources/1.jpg">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.<br> <br> <a onclick="buy_item();" class="cool_button fontier displayer" ">Buy now</a> <br> </p>
</div>
</div>
<!-- Second Photo Grid-->
<div class="row-padding space-bottom">
<div class="third container margin-bottom space-bottom">
<img src="./resources/4.jpg">
<p><b>Lorem Ipsum</b></p>
<p >Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.<br> <br> <a onclick="buy_item();" class="cool_button fontier displayer" ">Buy now</a> <br> </p>
</div>
<div class="third container margin-bottom space-bottom">
<img src="./resources/5.jpg">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.<br> <br> <a onclick="buy_item();" class="cool_button fontier displayer" ">Buy now</a> <br> </p>
</div>
<div class="third container space-bottom">
<img src="./resources/6.jpg" class="last">
<p><b>Lorem Ipsum</b></p>
<p>Praesent tincidunt sed tellus ut rutrum. Sed vitae justo condimentum, porta lectus vitae, ultricies congue gravida diam non fringilla.<br> <br> <a onclick="buy_item();" class="cool_button fontier displayer" ">Buy now</a> <br> </p>
</div>
<script src="scripts/shop.js"></script>
<script src="scripts/navbar.js"></script>
</body>
</html>