-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedules.html
96 lines (91 loc) · 2.5 KB
/
schedules.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Schedules</title>
<meta charset="utf-8">
<meta name="viewport" content="width = device-width, inital-scale = 1.0">
<link rel="stylesheet" type = "text/css" href="css/stylesheet1.css">
<link rel="stylesheet" type = "text/css" href="css/schedules.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="title">
<h1>Innova</h1>
</div>
<nav id ="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="aboutus.html">About us</a></li>
<li><a href="schedules.html" class="thissite">Schedules</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h2>
Upcoming events
</h2>
<p>
We're having a innovation camp, for everyone from 15-18 years,
every week throughout different establishments in Oslo.
The innovation camps will last 5 hours, with a 1 hour break after the first 2.
Throughout the course, we will teach you the benefits of frugal innovation
in products, wether you plan to run a small or large business. The course will include a couple
activities where you will have to work in groups. Plus, meals will be offered during the break,
so no need to bring a lunch box!
</p>
<p>Any questions regarding us or our events? Contact us through our client support gmail: <b>[email protected]</b></p>
</div>
<div>
<table>
<tr>
<th>
Name
</th>
<th>
Description
</th>
<th>
When?
</th>
</tr>
<tr>
<td>
Halloween party
</td>
<td>
World's biggest halloween party!
</td>
<td>
Saturday 31. October 18:00
</td>
</tr>
<tr>
<td>
Innovation camp
</td>
<td>
Einstein themed innovation camp in Oslo
</td>
<td>
Tuesday 3. November 17:00
</td>
</tr>
<tr>
<td>
Innovation camp
</td>
<td>
USA elections themed innovation camp
</td>
<td>
Tuesday 10. November 17:00
</td>
</tr>
</table>
</div>
</main>
</body>
</html>