-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (68 loc) · 2.87 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>solveit</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<div class="nav-bar row">
<div class= "two columns">
<h1>hello</h1>
</div>
<div class= "two columns">
<a id="home-button" class="button nav-button" data-scroll="#intro" onchange="scrollto(this);">Home</a>
</div>
<div class= "two columns">
<a id="schedule-button" class="button nav-button" href="">Schedule</a>
</div>
<div class= "two columns">
<a id="faqButton" class="button nav-button" href="faq.html">FAQ</a>
</div>
<div class= "two columns">
<a id="partners-button" class="button nav-button" data-scroll="#partners" onchange="scrollto(this);">Partners</a>
</div>
<div class= "one column"></div>
<div class= "one column">TEST</div>
</div>
<div class="main-container">
<div id="splash">
<div id="logo"><img src="img/logo.png" style="max-width: 100%"></img></div>
</div>
<div class="container" id="intro">
<p>Solveit is a weekly event at <b>EPFL</b> centered around civic issues and technology.</p>
<p>The event is set to start at the beginning of 2017</p>
</div>
<div class="container" id="schedule">
<h3>SCHEDULE</h3>
</div>
<div class="container" id="faq">
<h3>FAQ</h3>
</div>
<div class="container" id="partners">
<h3>PARTNERS</h3>
</div>
</div>
<div id="footer">
<p>This is an event by <a href="https://agepoly.ch/">AGEPoly</a>, the EPFL student association</p>
</div>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-XXXXX-Y','auto');ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>