-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcredits.html
119 lines (115 loc) · 4.45 KB
/
credits.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- link tto the style sheet for the wheel things -->
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Credits</title>
<!-- Links to stylesheet implementations -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<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=Pacifico&family=Quicksand:wght@300;400;500&family=Sono:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- dayjs link -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dayjs.min.js"
integrity="sha256-iu/zLUB+QgISXBLCW/mcDi/rnf4m4uEDO0wauy76x7U="
crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<span class="navbar-brand">Can't Decide?</span>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarText"
aria-controls="navbarText"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-auto">
<p class="nav-link" id="headerTime"></p>
</li>
<li class="nav-item active mx-auto">
<a class="nav-link" href="index.html">Home </a>
</li>
<li class="nav-item mx-auto">
<!-- NO HREF BECAUSE CURRENT PAGE -->
<a class="nav-link" href="#"
>Credits <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item mx-auto">
<a class="nav-link" href="./contactUs.html">Contact</a>
</li>
</ul>
</div>
</nav>
<header>
<div class="container-fluid p-0">
<div
class="container text-center page-header contact-header-nothing-else"
id="landingHeader"
>
<h1 class="display-4" id="title-grab"><strong>Credits</strong></h1>
</div>
</div>
</header>
<div class="row">
<div class="col-12 col-md-12">
<container id="nap">
<section class="words">
<ul class="credits-list" id="credits-container">
<h1><strong>Hover over us!</strong></h1>
<div class="columns">
<div class="column">
<li>
<a class="links" href="https://docs.developer.yelp.com/docs/graphql-intro">Yelp Graph QL API</a>
</li>
<li>
<a class="links" href="https://openweathermap.org/api/geocoding-api">OpenWeather API</a
>
</li>
<li>
<a class="links" href="https://codepen.io/sumeshkp18/pen/VGBPYg">Spin Wheel Using JS by Sumesh KP</a>
</li>
<li><a class="links" href="https://bulma.io/documentation/columns/basics/">Bulma Grid System</a></li>
<li><a class="links" href="https://getbootstrap.com/docs/4.0/layout/grid/">Bootstrap Grid System</a></li>
</div>
<div class="column">
<li>Made with love by</li>
<li>
<a class="links" href="https://github.com/KryptekHD" >Greg Decarlo,</a>
</li>
<li><a class="links" href="https://github.com/Rbustan0">Roye Bustan,</a>
</li>
<li><a class="links" href="https://github.com/ctvb">Nicholas Smith,</a>
</li>
<li><a class="links" href="https://github.com/ehmahdee">and Emma Daily ❤️</a>
</li>
</div>
</div>
</ul>
</section>
</container>
</div>
</div>
<script src="./assets/javascript/script.js"></script>
</body>
</html>