-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (67 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.3">
<link rel="stylesheet" href="styles.css">
<title> KAC Developers Conference </title>
</head>
<body>
<header>
<a href="" class="logo">KAC233</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="registration.html">Registration</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main class="mainblock">
<div class="main-wel">
<div class="welcome">
<p class="wel-message">
Welcome to <span>KAC233!</span><br>
An Opportunity to find and embrace your inner creative.
</p>
<div class="about-btn">
<button type="button" class="abt-block"><a href="about.html">Learn More</a></button>
</div>
</div>
<div class="register">
<p class="reg-message">
<span>Register NOW!</span><br>
Take your shot at the career of your dreams, <br>
we're expecting <span>you.</span>
</p>
<div class="reg-btn">
<button type="button" class="reg-block speaker"><a href="speaker.html">Speaker</a></button>
<button type="button" class="reg-block audience"><a href="audience.html">Audience</a></button>
</div>
</div>
</div>
<h2 class="go-down">⏬ Snapshots from past Workshops... ⏬</h2>
<div class="events">
<div class="event">
<h3>🥇 PRODUCT CON 🎨 - L.A. 2021</h3>
<img src="img/event.jpg" alt="Los Angeles 2021" class="event-photo">
</div>
<div class="event">
<h3>🥈 INNOVATE 💡 - Rio 2022</h3>
<img src="img/event0.jpg" alt="Rio 2022" class="event-photo">
</div>
<div class="event">
<h3>🥉 BUILD 🔧 - Berlin 2023</h3>
<img src="img/event1.jpg" alt="Berlin 2023" class="event-photo">
</div>
</div>
</main>
<footer>
<p>
Copyrights ©<script>
document.write(new Date().getFullYear());
</script>, Project 233. All rights reserved. <br>
KUDZAI ABUBAKAR COLLINS
</p>
</footer>
</body>
</html>