-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEVENT_1.html
92 lines (84 loc) · 2.87 KB
/
EVENT_1.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
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Holidays with Code</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('Logos/background7.jpeg');
background-size: cover;
background-position: center;
color: #ffffff;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 50px 20px;
text-align: center;
}
.box {
background-color: rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
.box:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.box h2 {
font-size: 24px;
margin-bottom: 20px;
}
.box p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 30px;
}
.box img {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
.register-button {
display: inline-block;
padding: 15px 30px;
border: none;
border-radius: 5px;
font-size: 18px;
text-decoration: none;
color: #fff;
background-color: #6b1aff;
transition: background-color 0.3s ease;
}
.register-button:hover {
background-color: #4f00b8;
}
</style>
</head>
<body>
<div class="container">
<h1>Competitive Programming</h1>
<div class="box">
<h2>About the Event</h2>
<p>Welcome to Competitive Programming event organized by the Programmers’ Paradise coding club. This event consists of exciting and challenging questions of varied levels.</p>
<p>Leaderboard will be provided, so that participants can check where they stand in this competitive world</p>
<p>For practice and sample questions, students may refer to the recently held HackerRank competition: <a style="color: blueviolet;" href="//www.hackerrank.com/programmers-paradise-weekly-contest">www.hackerrank.com/programmers-paradise-weekly-contest</a></p>
</div>
<div class="box">
<h2>Date :June 08,2024</h2>
<!--<img src="Event_Images/date.png" alt="Date for Test">-->
<h2>Time: 02:50 PM</h2>
<h2>Location: Common computing room , UTD1 , CSVTU</h2>
</div>
<!--<div class="box">
<a href="https://forms.gle/En6xpVcUzoAKBRQE6" class="register-button">Register Now</a>
</div>-->
</div>
</body>
</html>