-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
79 lines (69 loc) · 2.91 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
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Keith Gillum</title>
<link rel="icon" type="image/x-icon" href="assets/social/favicon.png">
<link rel="stylesheet" href="main.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron&family=Poppins&display=swap" rel="stylesheet">
<!-- Icons for responsive nav bar -->
<script src="https://kit.fontawesome.com/2ed291d65a.js" crossorigin="anonymous"></script>
<!-- Nav bar javascript -->
<script>
function responsiveNav() {
var x = document.getElementById("topNav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</head>
<body>
<div class="container">
<div class="topnav" id="topNav">
<a href="index.html"><i class="fa fa-house"></i></a>
<a href="reading.html"><i class="fa fa-book"></i></a>
<a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a>
<a href="shop.html" class="active"><i class="fa-solid fa-shirt"></i></a>
<a href="javascript:void(0);" class="icon" onclick="responsiveNav()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="row">
<header>
<nav>
<h1>BLUE DREAM</h1>
<nav></nav>
<h2>KEITH GILLUM</h2>
</nav>
</header>
</div>
<section id="endorsements">
<h2>Shop coming soon!</h2>
</section>
<div class="row">
<footer>
<div class="row">
<div class="col-sm-6 border-right">
<!-- <h3>Luke 19:23</h3>-->
<a href="https://secure.actblue.com/donate/gillum-4-florida-1" target="_blank">
<button><h3>DONATE</h3></button>
</a>
</div>
<div class="col-sm-6">
<ul class="list-inline">
<li class="list-inline-item"><a href="https://www.facebook.com/profile.php?id=61558024835696" target="_blank"><img class="social-icon" src="assets/social/icons8-facebook-480.png"></a></li>
<li class="list-inline-item"><a href="https://x.com/Gillum4florida" target="_blank"><img class="social-icon" src="assets/social/x.png"></a></li>
<li class="list-inline-item"><a href="lorem " target="_blank"><img class="social-icon" src="assets/social/YT.png"></a></li>
</ul>
</ul>
</footer>
</div>
</body>
</html>