-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
73 lines (68 loc) · 3.02 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events - Codeoholics Web Portal</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="https://media.licdn.com/dms/image/D560BAQFs8jcqNSz0MQ/company-logo_200_200/0/1683385398554?e=2147483647&v=beta&t=Vxw5Erx4dyWuxOIWPZ4lvDPaHJdpqWemRVDJ87WdAf4" alt="Codeoholics Logo">
</div>
<div class="user-actions">
<a href="login.php">Login</a>
<a href="signup.php">Sign-Up</a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</nav>
</header>
<main>
<section class="events">
<h2>Upcoming Events</h2>
<div class="event">
<div class="event-image">
<img src="https://cdn.create.vista.com/api/media/small/247726570/stock-photo-cropped-view-excited-smiling-fingers-isolated-blue" alt="Event 1 Image">
</div>
<div class="event-details">
<h3>Event 1</h3>
<p>Date: January 15, 2023</p>
<p>Location: Virtual</p>
<button class="register-button">Register</button>
</div>
</div>
<section class="events">
<h2>Recent Events</h2>
<div class="event">
<div class="event-image">
<img src="https://png.pngtree.com/png-clipart/20201111/ourlarge/pngtree-hand-tear-off-calendar-clip-art-png-image_2403279.jpg" alt="Event 1 Image">
</div>
<div class="event-details">
<h3>Event 2</h3>
<p>Date: November 15, 2023</p>
<p>Location: Online</p>
<p>Description: The Git & Github Bootcamp. Master the essentials and the tricky bits: rebasing, squashing, stashing, reflogs, blobs, trees, & more!</p>
<button class="view-button">View</button>
</div>
</div>
</section>
</main>
<footer>
<section class="bottom-box">
<div class="social-links column">
<h2>Socials</h2>
<p> <a href="https://www.linkedin.com/company/codeoholics-club-cmrtc/">LinkedIn</a> | <a href="https://www.instagram.com/codeoholics/">Instagram</a> | <a href="https://discord.gg/rbq6gQWx">Discord</a></p>
</div>
</section>
<p>© 2023 Codeoholics</p>
</footer>
</body>
</html>