-
Notifications
You must be signed in to change notification settings - Fork 1
/
fests.html
65 lines (50 loc) · 2.2 KB
/
fests.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>PRISM - Fests</title>
<!-- Load Core Materialize CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.png" type="image/x-icon">
<link rel="icon" href="/favicon.png" type="image/x-icon">
<link href='https://fonts.googleapis.com/css?family=Cabin|PT+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<link rel="stylesheet" href="css/fests.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113139994-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-113139994-2');
</script>
</head>
<body class="bodyfest">
<div class="header">
<h2 class="header-title white-text"></h2>
<a class="back-link" href="fests_main.html">Back to Fests</a>
</div>
<div class="card">
</div>
<div class="container">
<div class="row white z-depth-5 fest-cont">
<div class="col s12">
<center><img id="fest-img"></center>
<h3 class="pt-sans">Core Team</h3>
<div id="team-details-container" class="flow-text"></div>
<h3 class="pt-sans">Introduction</h3>
<div id="introduction" class="flow-text"></div>
<h3 class="pt-sans">Events</h3>
<div id="events" class="flow-text"></div>
<h3 class="pt-sans">Committees</h3>
<div id="committees" class="flow-text"></div>
</div>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
<script type="text/javascript" src="js/fests.json"></script>
<script type="text/javascript" src="js/fests.js"></script>
</body>
</html>