-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.html
More file actions
69 lines (59 loc) · 2.65 KB
/
Copy pathlibrary.html
File metadata and controls
69 lines (59 loc) · 2.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library</title>
<!-- Links (top to bottom): Favicon, Foundation, Style1 -->
<link rel="icon" type="image/png" href="assets/imgs/favicon3.png" />
<script src="https://kit.fontawesome.com/106f23844d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation.min.css"
integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/csshake/1.5.3/csshake-rotate.css"
integrity="sha256-qb6RbQjtL5q6WnEFeCFmf2PI6e3IJ1Fxsaii8QOZM8Y=" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style_library.css">
</head>
<body>
<!-- Header -->
<div class="logo-header">
<a href="index.html"><img id="logo" src="assets/imgs/mmlogo_white.PNG" alt="mix me logo"/></a>
</div>
<!-- Header Spacer -->
<div class="spacer"></div>
<!-- Welcome! -->
<h1 class="welcome"> Browse the drink menu!</h1>
<br>
<div class="letter-links grid-x align-center">
<a class="small-3" id="AG">Page 1</a>
<a class="small-3" id="HM">Page 2</a>
<a class="small-3" id="NS">Page 3</a>
<a class="small-3" id="TZ">Page 4</a>
</div>
<br>
<hr>
<!-- Library Of Drinks Section -->
<div class="startLib grid-x align-center">
</div>
<!-- Area For Drink Selected To Populate -->
<div class="article-row-section">
<div class="drink-card article-row-section-inner" id="container">
</div>
</div>
<!-- Bottom Spacer -->
<div class="bottom-spacer"></div>
<!-- Fixed Footer Menu -->
<div class="bottom-menu grid-x">
<form action="find.html"><button class="fas fa-map-marker-alt fa-2x"></button></form>
<form action="index.html"><button class="fas fa-search fa-2x"> </button></form>
<form action="learn.html"><button class="fas fa-gamepad fa-2x"></button></form>
<form action="library.html"><button class="fas fa-book-open fa-2x"></button></form>
</div>
<!-- Scripts (top to bottom): jQuery, Foundation, Script1 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<script src="script_library.js" type="text/javascript"></script>
</body>
</html>