forked from Abhishek-Dige/College-Event-Registration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding.html
More file actions
56 lines (47 loc) · 2.17 KB
/
Copy pathcoding.html
File metadata and controls
56 lines (47 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Contests</title>
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/event-styles/events_page.css">
</head>
<body>
<header class="header">
<h1>Code & Compete</h1>
<p class="small-text">Showcase your programming skills.</p>
</header>
<main class="wrapper">
<div class="box">
<img src="./images/coding-images/hacktoberfest.jpg"
alt="Source code on a screen" class="pic">
<div class="info">
<h2>Hacktoberfest</h2>
<p>Hacktoberfest is a month-long global event held every October to promote open-source contributions. Participants submit pull requests, support projects, and earn rewards such as T-shirts or digital badges.</p>
</div>
</div>
<div class="box">
<img src="./images/coding-images/codefiesta.jpg"
alt="Computer setup for coding" class="pic">
<div class="info">
<h2>Codefiesta</h2>
<p>Codefiesta is a high-energy competitive coding event where participants solve problems under time pressure. It tests logic, speed, and accuracy, making it a great way to sharpen coding skills.</p>
</div>
</div>
<div class="box">
<img src="./images/coding-images/codeclash.jpg"
alt="Matrix-style coding screen" class="pic">
<div class="info">
<h2>Codeclash</h2>
<p>Codeclash is our college’s official programming contest. Participants solve algorithmic challenges, and the final rank list helps them understand their strengths and areas to improve in competitive programming.</p>
</div>
</div>
</main>
<div class="back-btn-container">
<button class="back-btn" onclick="goBack()">⬅ Back</button>
</div>
</main>
<script src="events_script.js"></script>
</body>
</html>