-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.html
More file actions
124 lines (104 loc) · 4.52 KB
/
event.html
File metadata and controls
124 lines (104 loc) · 4.52 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Terra Technica 2017</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="stylesheets/fonts.css">
<link rel="stylesheet" href="stylesheets/reset.css">
<link rel="stylesheet" href="stylesheets/animation.css">
<link rel="stylesheet" href="stylesheets/main.css">
</head>
<body>
<!-- Background -->
<section class="bg">
<div class="circle circle-1"></div>
<div class="circle circle-2"></div>
<div class="circle circle-3"></div>
<div class="circle circle-4"></div>
<div class="circle circle-5"></div>
<div class="circle circle-hide-1 circle-6"></div>
<div class="circle circle-hide-2 circle-7"></div>
</section>
<div class="full-page clearfix" id="main-section">
<!--Title Section-->
<section class="col-1-3 v-center-wrap left-pane-wrap">
<div class="title-box title-box--first">
<h1 class="title-box--text">Title of the Event</h1>
</div>
<div class="v-center-box left-pane">
<div class="day">Monday</div>
<div class="date">21 March</div>
<div class="space-top time">11:00 - 12:00</div>
<div class="activity">Activity 1</div>
<div class="space-top-small">12:00 - 13:00</div>
<div class="activity">Activity 2</div>
<div class="space-top-small">13:00 - 14:00</div>
<div class="activity">Activity 3</div>
</div>
</section>
<!--Description Section-->
<section class="col-1-3 middle-pane">
<div class="title-box">
<div class="title-box--text">
Description
</div>
</div>
<div class="full-page content">
<h4>Brief</h4>
<p>
This is a brief description of the event. It is supposed to give
a general overview of the event and let the reader know what it is
and what it is about.
</p>
<h4 class="space-top-small">Rules</h4>
<p>
This is a detailed description of the event. It should specify each and
every detail about the event. This can be long, and can be broken up
into multiple paragraphs.
</p>
<p class="space-para">
This is the second paragraph. It contains further rules, and I'm just
writing all this to full up space, so that this paragraph can be bigger.
</p>
<p class="space-para">It can also contiain lists</p>
<ul class="space-para">
<li>
This is rule one.
</li>
<li>
Another rule in the list.
</li>
<li>
Rule three.
</li>
</ul>
</div>
</section>
<!--Extra Info Section-->
<section class="col-1-3 right-pane">
<h2>Contact</h2>
<p>Pappu</p>
<p>9999911111</p>
<p class="space-top">
1000 people have registered for this event.
</p>
<a class="btn btn-cta space-para">Register</a>
</section>
</div>
<small class="menu-btn" id="nav-btn">Menu</small>
<!-- Nav -->
<nav class="full-page overlay h-center-wrap v-center-wrap primary-nav" id='primary-nav'>
<div class="v-center-box">
<ul>
<li><a href="index.html">Home</a></li>
<li>About Us</li>
<li><a href="event.html">Events</a></li>
<li><a href="initiative.html">Initiative</a></li>
</ul>
</div>
<small id="nav-close-btn">Close</small>
</nav>
<script src="scripts/main.js"></script>
</body>
</html>