-
Notifications
You must be signed in to change notification settings - Fork 5
/
workshops.html
146 lines (128 loc) · 5.58 KB
/
workshops.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equ iv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./workshops.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="./workshops.js"></script>
<title>Garage@EEE</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<header>
<div id="navigation">
<div id="nav-left">
<a href="/">
<img src="./assets/1x/garage_logo.png" id="logo">
</a>
</div>
<div id="nav-right">
<table>
<tr>
<td><a href="https://www.youtube.com/">About Us</a></td>
<td><a href="https://www.youtube.com/">Workshops</a></td>
<td><a href="https://www.youtube.com/">Events</a></td>
</tr>
</table>
</div>
</div>
<div class="white-text container">
<div class="row h-100">
<div class="col-sm-12 my-auto">
<p id="title">Workshops</p>
<p id="abstract">Only here, at <span class="abstract-highlight">Garage@EEE</span>
<span class="abstract-highlight">adipiscing!</span></p>
</div>
</div>
<div style="align-items: center; padding-left: 50%; font-size: large;">
<span id="down">↓</span>
</div>
</div>
</header>
<div style=" background-color: beige; " id="wrapper" class="filler">
<p class="heading">Upcoming</p>
<div id="block">
<div id="content-block-1" class="content">
<a href="/">
<div class="image-content">
<p id="title-1">Arduino</p>
</div>
<div class="text-content">
<p id=text-1>
69 January 2020</br>
19.00 - 21.00
</p>
</div>
</a>
</div>
<div id="content-block-2" class="content">
<a href="/">
<div class="image-content">
<p id="title-2">test</p>
</div>
<div class="text-content">
<p id=text-2>
69 January 2020</br>
19.00 - 21.00
</p>
</div>
</a>
</div>
<div id="content-block-3" class="content">
<a href="/">
<div class="image-content">
<p id="title-3">test</p>
</div>
<div class="text-content">
<p id=text-3>
69 January 2020</br>
19.00 - 21.00
</p>
</div>
</a>
</div>
</div>
</div>
<!-- CONTACT US -->
<div style=" background-color: #e3e2e1;" id="grey" class="filler">
<div>
<p id="contact">Visit Us</p>
<p id="details">Address: S1-B3c-26, 50 Nanyang Avenue, Singapore- 639796</p>
<iframe id="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3988.722626105181!2d103.67779751380424!3d1.3428134990206313!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31da0fe5b802bedf%3A0x9ca41efe9a3d4686!2sGarage%40EEE!5e0!3m2!1sen!2sin!4v1576389681412!5m2!1sen!2sin"
width="100%" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
</div>
<footer>
<div style="padding-top: 340px;" class="d-flex flex-row justify-content-center align-items-center">
<div id="icon">
<!-- Add font awesome icons -->
<a href="https://www.facebook.com/GARAGEATEEE/" class="fa fa-facebook"></a>
<a href="https://github.com/garage-at-eee" class="fa fa-github"></a>
<a href="https://www.instagram.com/garage_at_eee/" class="fa fa-instagram"></a>
<a href="https://www.youtube.com/channel/UC-NpThTYNxiHYYJV5PEhYug" class="fa fa-youtube"></a>
<style media="screen">
.fa {
padding: 20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
color: white;
}
.fa:hover {
opacity: 0.7;
}
</style>
</div>
</div>
<div class="white-text">
<p id="rights">© Garage@EEE. All rights reserved.</p>
</div>
</footer>
</body>
</html>