-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
77 lines (75 loc) · 2.74 KB
/
product.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
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Our Product</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet">
<link media="all" type="text/css" rel="stylesheet" href="css/style.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html">Cake Frenzyyy</a>
</header>
<div class="our-product">
<h1>Our Product</h1>
<div class="preview-product">
<img src="img/brownies.jpg">
<h3>Brownies</h3>
<img src="img/birthday.jpg">
<h3>Birthday Cake</h3>
</div>
<div class="preview-product">
<img src="img/donut.jpg">
<h3>Donut</h3>
<img src="img/bread.jpg">
<h3>Bread</h3>
</div>
<div class="preview-product">
<img src="img/fruit-cake.jpg">
<h3>Fruit Cake</h3>
<img src="img/butter-cake.jpg">
<h3>Butter Cake</h3>
</div>
<div class="preview-product">
<img src="img/cup-cake.jpg">
<h3>Cup Cake</h3>
<img src="img/pie.jpg">
<h3>Pie</h3>
</div>
<div class="preview-product">
<img src="img/cheese-cake.jpg">
<h3>Cheese Cake</h3>
<img src="img/coffee-cake.jpg">
<h3>Coffee Cake</h3>
</div>
<div style="clear:both"></div>
<h3>Share :</h3>
<a href="" target="_blank" id="fb_share"><i class="fab fa-facebook-square fa-2x" style="color:#1877f2"></i></a>
<a href="" target="_blank" id="tw_share"><i class="fab fa-twitter-square fa-2x" style="color:#55acee"></i></a>
</div>
</div>
<footer>
<ul>
<li>
<span>Main Office</span>
Jl HR Rasuna Said Kav X-0 Graha Surya Internusa, Dki Jakarta, 12950
Indonesia.
</li>
<li>
<span>Contact</span>
<a href="#"><i class="fab fa-twitter-square" style="color:#E98A8A"></i></a>
<a href="#"><i class="fab fa-facebook-square" style="color:#E98A8A"></i></a>
<a href="#"><i class="fab fa-instagram-square" style="color:#E98A8A"></i></a>
</li>
</ul>
</footer>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"></script>
<script>
window.onload = function() {
fb_share.href ='http://www.facebook.com/share.php?u=' + encodeURIComponent(location.href);
tw_share.href ='https://twitter.com/share?url=' + encodeURIComponent(location.href);
}
</script>
</html>