-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (118 loc) · 4.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4LGFYYQEPK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4LGFYYQEPK');
</script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=0.75">
<link rel="shortcut icon" type="image/png" href='images/icon.png'/>
<title>BIPOC Gift Guide</title>
</head>
<body>
<div class='banner'>
<h1>BIPOC GIFT GUIDE</h1>
<div id='menu-links'>
<a target='_blank' href='https://docs.google.com/forms/d/e/1FAIpQLSelEN01uTKnHPvketcVzMn7ZR4q3TMBKRCpYIKwq_Zpfw8cAg/viewform'>Suggest a Product</a>
<a target='_blank' href='https://www.shishirose.com/buy-black'>More Resources from ShiShi Rose</a>
</div>
<a href='javascript:void(0);' class='menu-icon'>
<i class='fa fa-bars'></i>
</a>
</div>
<div class='banner-line'></div>
<div class='banner'>
<h4>SUPPORT BIPOC OWNED SHOPS</h4>
</div>
<div class='categories'>
<div class='category-row'>
<a href='eatndrink.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>eat + drink</div>
</div>
</a>
<a href='wear.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>wear</div>
</div>
</a>
<a href='practical.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>practical</div>
</div>
</a>
<a href='jewelry.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>jewelry</div>
</div>
</a>
<a href='create.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>create</div>
</div>
</a>
<a href='lgbtq.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>lgbtq+</div>
</div>
</a>
<a href='read.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>read</div>
</div>
</a>
<a href='selfcare.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>self care</div>
</div>
</a>
<a href='home.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>home</div>
</div>
</a>
<a href='active.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>active</div>
</div>
</a>
<a href='kids.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>kids</div>
</div>
</a>
<a href='silly.html'>
<div class='category-box col-sm-2'>
<div class='category-name'>silly</div>
</div>
</a>
</div>
</div>
<footer>
<span class='instagram'>
<a target='_blank' href='https://www.instagram.com/bekahnoble/'>@bekahnoble</a>
</span>
<a href='donate.html'>
<div class='donate'>
OR MAKE A DONATION
</div>
</a>
</footer>
<script>
$('.menu-icon').click(function () {
$('#menu-links').toggle();
})
</script>
</body>
</html>