-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEVENT_2.html
More file actions
110 lines (99 loc) · 3.75 KB
/
Copy pathEVENT_2.html
File metadata and controls
110 lines (99 loc) · 3.75 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Member Selection Test</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>Introduction to CV</h1>
<div class="box">
<h2>About the Event</h2>
<p>Welcome to the amazing event organizing by the Programmers’ Paradise (coding club). This event consists of ntroduction to the field of Computer Vision and Its importance in field of Artificial Intelligence</p>
<p>Resource material and Video of this event will bw provided </p>
<p>It is open for all</p>
</div>
<div class="box">
<h2>Date : June 15, 2024</h2>
<h2>Time: 2:50 PM</h2>
<h2>Location: UTD1 Basement Auditorium </h2>
</div>
<!--<div class="box">
<pre style="font-family: Arial, sans-serif;"> <h2> <b> Links for participation: </b></h2></pre>
<ul>
<li><a style="color: rgb(255, 255, 255);" href="https://www.hackerrank.com/member-selection-test-sem-2" class="register-button">2nd-semester</a></li>
<li></li>
<li><a style="color: rgb(255, 255, 255);" href="https://www.hackerrank.com/member-selection-test-sem-4" class="register-button">4th-semester</a></li>
<li></li>
<li><a style="color: rgb(255, 255, 255);" href="https://www.hackerrank.com/member-selection-test-sem-6" class="register-button">6th-semester</a></li>
</ul>
</div>-->
<!-- <div class="box">
<ul>
<li><a style="color: rgb(255, 255, 255);" href="mem_selection/mem_result.html" class="register-button">Result</a></li>
<li></li>
<li><a style="color: rgb(255, 255, 255);" href="https://www.hackerrank.com/member-selection-test-sem-4" class="register-button">4th-semester</a></li>
<li></li>
<li><a style="color: rgb(255, 255, 255);" href="https://www.hackerrank.com/member-selection-test-sem-6" class="register-button">6th-semester</a></li>
</ul>
</div>-->
</div>
</body>
</html>