-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (107 loc) · 3.41 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WES:HACK 24</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f9f9f9;
color: #333;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 20px 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav {
background-color: #f1f1f1;
padding: 15px;
border-bottom: 1px solid #ccc;
display: flex;
justify-content: center;
}
nav a {
margin: 0 10px;
color: #333;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
main {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
}
article {
flex: 1 1 calc(50% - 20px);
margin: 10px;
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #333;
font-size: 36px;
margin-top: 0;
}
h2 {
color: #555;
font-size: 28px;
margin-top: 0;
}
p {
line-height: 1.6;
margin: 10px 0;
}
.cta {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
text-decoration: none;
display: inline-block;
margin-top: 10px;
border-radius: 5px;
transition: background-color 0.3s;
}
.cta:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<header>
<h1>Welcome to WES:HACK 24</h1>
</header>
<nav>
<a href="#home">Home</a> |
<a href="Website/venue.html">Venue</a> |
<a href="Website/schedule.html">Schedule</a> |
<a href="Website/sponsors.html">Sponsors</a>
</nav>
<main>
<article id="home">
<h2>Why You Should Come to WES:HACK 24</h2>
<p>At WES:HACK 24, you will not only compete for exciting prizes but also have the chance to meet industry leaders and tech enthusiasts from all over the region.</p>
<p>The hackathon offers you a platform to learn, collaborate, and showcase your innovative ideas.</p>
<p>With expert mentors, amazing networking opportunities, and a fun, inclusive environment, this hackathon will provide the ideal setting for you to push the boundaries of your knowledge and creativity.</p>
<p>Whether you're an experienced coder or a beginner, WES:HACK 24 has something for everyone.</p>
<a href="https://form.jotform.com/242751754474463" class="cta">Register Now!</a>
</article>
<article id="venue">
<h2>The First of Its Kind</h2>
<p>Welcome to Wesgreen's International School's very own Hackathon, where students compete to become the #1 coder.</p>
<p>Are you up for the challenge?</p>
</article>
</main>
</body>
</html>