-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (134 loc) · 5.83 KB
/
index.html
File metadata and controls
144 lines (134 loc) · 5.83 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-155772004-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-155772004-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hackton | Home</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container">
<header class="header-content">
<img class="logo" src="./images//Blue horizontal.png" alt="hackton-logo">
<nav class="header-nav">
<a href="hackthon.co">Home</a>
<div class="btn">
<button id="btn-1" onclick="window.location.href = 'https://app.hackton.co/login';">Log in</button>
<button id="btn-2" onclick="window.location.href = 'https://app.hackton.co/register';">Sign up</button>
</div>
</nav>
</header>
<div class="top-content">
<div class="top-content-1">
<h1>Let's make your next hackathon a success !</h1>
<p>participate, organize and judge hackathons on Hackton. We have the tools to make you succeed.</p>
<div class="btn-cont">
<button id="btn-4" onclick="window.location.href = 'https://app.hackton.co/register';">Get Started</button>
</div>
</div>
<div class="top-image">
<img src="./images/download5.jpg" alt="hackton-image" id="topImg">
</div>
</div>
<div class="middle-content-1">
<h1>Why Hackton?</h1>
<div class="underline"></div>
<p>We have awesome features that will make taking part in hackathon fun again</p>
</div>
<div class="middle-content-2">
<div class="middle-widget">
<div class="overall">
<img class="widget" id="w1" src="./images/transparency.png" alt="hackton-widget">
<h2>Transparency</h2>
<p>We make it easy for participants to view their project scores in real time.</p>
</div>
<div class="overall">
<img class="widget" src="./images/collaboration.png" alt="hackton-widget">
<h2>Collaboration</h2>
<p>Work with your teammates as an organizer or participant</p>
</div>
<div class="overall">
<img class="widget" src="./images/simplicity.png" alt="hackton-widget">
<h2>Simplicity</h2>
<p>The hackathon app was designed with you in mind. The UI is simple and intuitive</p>
</div>
</div>
</div>
<div class="about-content">
<h2>Meet the team</h2>
<div class="underline"></div>
<div class="all-member">
<div class="member">
<img class="team-member" src="./images/pascal.jpg" alt="Pascal" />
<p>Pascal Ulor</p>
<h3>Team Lead</h3>
</div>
<div class="member">
<img class="team-member" src="./images/mariam.jpg" alt="Mariam" />
<p>Mariam Adedeji</p>
<h3>Team Member</h3>
</div>
<div class="member">
<img class="team-member" src="./images/justinas.jpg" alt="Justinas" />
<p>Justinas Vebra</p>
<h3>Team Member</h3>
</div>
<div class="member">
<img class="team-member" src="./images/mike.jpg" alt="Mike" />
<p>Mike Attara</p>
<h3>Team Member</h3>
</div>
<div class="member">
<img class="team-member" src="./images/mildred.jpg" alt="Mildred" />
<p>Mildred Otieno</p>
<h3>Team Member</h3>
</div>
<div class="member">
<img class="team-member" src="./images/ayomide.jpg" alt="Ayomide" />
<p>Ayomide Jones</p>
<h3>Team Member</h3>
</div>
</div>
</div>
<div class="bottom-content">
<div class="festival">
<h2>#Hash Code#</h2>
<p>Premier hackathon that brings the best of dev talent in the world.</p>
</div>
<div class="line"></div>
<div class="festival">
<h2>#NaijaHacks2019</h2>
<p>Premier hackathon that brings the best of dev talent in Nigeria.</p>
</div>
<div class="line"></div>
<div class="festival">
<h2>DevFest Europe</h2>
<p>Join us for an amazing hackathon in 2019.</p>
</div>
</div>
<footer class="footer">
<div class="footer-logo">
<img src="./images/linkedin.png" alt="linkedin" />
<img src="./images/twitter.png" alt="twitter" />
<img src="./images/facebook.png" alt="facebook" />
</div>
<nav class="footer-nav">
<a href="#team">Team</a>
<a href="#privacy">Privacy</a>
<a href="#Contact">Contact</a>
</nav>
<p>International Crafters © 2020</p>
</footer>
</div>
</body>
</html>