forked from jaiyankargupta/OCD-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontests.html
62 lines (54 loc) · 1.83 KB
/
contests.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
<!--contest page -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Contest Leaderboard</title>
</head>
<body>
<!-- Inside article page -->
<article>
<h1>Code Clash 1.0 Arriving Soon </h1>
<p>Heyy!! Whatsupp!</p><br>
<p>One of The most awaiting Coding Contest is about to arrive on July 23 at 10:00 AM. Open Code Developers Society presents the very first Code contest for
every DSA Lover. Whether your favourite Programming language is JAVA OR C++ , <em>Does'nt Matter!!</em> </p> <br>
<p> Mark The date on your calender!! Let you Stand out with your coding skills...</p><br>
<p> REGISTER NOW!!</p>
<a href="https://doc.google.com/forms/d/1D5-HoLQtw9KIUffmc_WlyfBiTG0jlDmK2azLGi6ol98/edit"> Click here</a>
<!-- Comments section -->
<div id="comments"></div>
<!-- Like button -->
<button id="likeButton">Like</button>
<!-- Share buttons -->
<button onclick="shareOnFacebook()">Share on Facebook</button>
<button onclick="shareOnTwitter()">Share on Twitter</button>
</article>
<script>
// Simulated functions for likes and sharing
function likeArticle() {
// Send a request to your backend to record the like
}
function shareOnFacebook() {
// Implement Facebook sharing logic
}
function shareOnTwitter() {
// Implement Twitter sharing logic
}
</script>
<header>
<h1>CodeClash 1.0</h1>
<p>Join us on July 23 at 10:00 AM!</p>
</header>
<section class="leaderboard">
<h2>Leaderboard</h2>
<ol>
<li> 1</li>
<li> 2</li>
<li> 3</li>
<!-- Add more players here -->
</ol>
</section>
</body>
</html>