-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmission.html
59 lines (50 loc) · 2.72 KB
/
mission.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
<!DOCTYPE html>
<head>
<title>San Diego Digital Arts</title>
<link rel="icon" href="Icons/DigitalArts.png">
<link rel = "stylesheet" href = "styles/general.css">
<link rel = "stylesheet" href = "styles/index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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=Chelsea+Market&family=Lexend+Deca:wght@400;500&family=Outfit:wght@200;300&family=Roboto+Mono:wght@180;700&family=Schoolbell&family=Space+Grotesk:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- BOOTSTRAP AND JQUERY -->
<!-- NONE OF THESE FONTS ARE ASS -->
<!--
font-family: 'Chelsea Market', cursive;
font-family: 'Lexend Deca', sans-serif;
font-family: 'Outfit', sans-serif;
font-family: 'Roboto Mono', monospace;
font-family: 'Schoolbell', cursive;
font-family: 'Space Grotesk', sans-serif;
-->
</head>
<body>
<div class="menubar">
<div class="link-container">
<a class="menubar-link" href="index.html">Home</a>
<a class="current menubar-link" href="mission.html">Mission</a>
<a class="menubar-link" href="showcase.html">Showcase</a>
</div>
<div class="mobile-container" style="display: none;">
<button id="mobile-links-show"><svg viewBox="0 0 60 60" width="50" height="50"><rect y="10" width="45" height="5"></rect><rect y="25" width="45" height="5"></rect><rect y="40" width="45" height="5"></rect></svg></button>
<ul id="mobile-links">
<a class="mobile-link" href="index.html">Home</a>
<a class="current-mobile mobile-link" href="mission.html">Mission</a>
<a class="mobile-link" href="showcase.html">Showcase</a>
</ul>
</div>
</div>
<div id="read-more">
<p class="read-more-text">Read More <span class="read-more-arrow">↓</span></p>
</div>
<div class="parallelogram st" style = "text-align:center;padding:2vh;">
<p class = "st">Our club made this website! -> <a href="https://github.com/SDArtsCode/Website">Github</a></p>
</div>
<script type="text/javascript" src="app.js"></script>
</body>