forked from msajara/JS101_SAP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
83 lines (70 loc) · 3.38 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
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Javascript 101 | Bristol CodeHub</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600|Sacramento:400" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/js101.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container" id="main-content">
<div class="row">
<div class="twelve column" style="margin-top: 10%">
<p><strong>Bristol CodeHub proudly presents:</strong></p>
<h1>JS Room 101</h1>
</div>
</div>
<div class="row">
<div class="twelve column" style="margin-top: 5%">
<h2>Summertime</h2>
<h3>... and the living is easy</h3>
<p>This is a space shared by the peeps who come together once a month to dive into the realms of javascript. They set out to master the best practice of the latter but secretly everybody dreams of summer - longing for sun, warmth and coding outside.</p>
<p><strong>Read about their dreams & their interests.</strong></p>
</div>
</div>
<div class="row">
<div class="twelve column" id="all-profiles">
<ul id="profiles" class="profiles-list">
</ul>
</div>
</div>
<!-- Single profile div - status hidden unless activated -->
<div id="single-profile" class="page">
<div class="overlay"></div>
<div class="row" id="preview-large">
<div class="one-half column">
<h3>Single profile view</h3>
<img src="">
</div>
<div class="one-half column" id="description">
</div>
<span class="close">×</span>
</div>
<!-- End of single profile div -->
<div class="error page">
<h3>Sorry, something went wrong :(</h3>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="js/js101.js"></script>
</body>
</html>