-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunthekeys.html
229 lines (204 loc) · 4.5 KB
/
Runthekeys.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Run The Keys</title>
<style>
body{
background-size: cover;
background-image: url(Image/65e3370906a73a0b23663ef7e2780078.jpg);
}
nav {
background-color: #444;
padding: 10px;
position: relative;
}
nav a {
color: #fff;
text-decoration: none;
display: block;
padding: 10px 20px;
border-radius: 5px;
margin-bottom: 5px;
}
#menuToggle {
color: #333;
padding: 10px;
margin: 10px;
cursor: pointer;
}
#menuItems {
display: none;
color: #333;
}
#menuItems.active {
display: flex;
flex-direction: column;
}
h2.rule{
font-size: 2.3em;
margin: 20px 0;
align-items: center;
display: flex;
justify-content: center;
}
h3.Teacher{
display: flex;
justify-content: center;
font-size: 1.8em;
margin: 20px 0;
align-items: center;
}
h3.Student{
display: flex;
justify-content: center;
font-size: 1.8em;
margin: 20px 0;
align-items: center;
}
button.Register {
background-color: #007bff;
color: #fff;
font-size: 1em;
padding: 20px 50px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button.Register:hover{
background-color: #0056b3;;
}
.Register a{
text-decoration: none;
color:#fff;
}
.name-container {
max-width: 900px;
margin: 0 auto;
padding: 5px;
}
.name {
font-size: 24px;
margin-bottom: 10px;
display: flex;
justify-content:space-between ;
}
.contact-number {
font-size: 20px;
margin-bottom: 10px;
}
.Event {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 20px auto;
max-width: 400px;
}
.Event p {
margin-bottom: 10px;
}
.Event span {
font-weight: bold;
}
@media screen and (max-width:600px){
h3.Student{
font-size: 1.5em;
}
nav {
flex-direction: column;
}
nav a {
margin-bottom: 5px;
}
.name, .contact-number {
font-size: 16px;
}
h3.Teacher {
font-size: 1.5em;
}
h2.rule {
font-size: 2.0em;
}
.Event {
max-width: 100%;
}
}
</style>
</head>
<body>
<p><a href="home.html"></a></p>
<p><a href="competition.html"></a></p>
<nav>
<button id="menuToggle">☰ Menu</button>
<div id="menuItems">
<a href="home.html">HOME</a>
<a href="competition.html">COMPETITION</a>
<a href="result.html">RESULT</a>
<a href="ContactUs.html">CONTACT US</a>
<a href="ScheduleEvent.html">SCHEDULE</a>
</div>
</nav>
<hr>
<h2 class="rule">Rule & Regulation</h2>
<p>1.Participations must have their own laptop.
</p>
<p>2.Two phases will be conducted.
</p>
<p>(I) Duration of 1st round is 10 min.
</p>
<p>(II) Duration of 2nd round is 5 min.
</p>
<p>3. Contain will be provided by us.
</p>
<br>
<p>Typing platform :-Ms word , wordPad.
</p>
<p>Result :- error and typing speed.</p>
<hr>
<h3 class="Teacher">Teacher coordinator</h3>
<div class="name-container">
<div class="name">
<span>Prof.Rupanita Das
</span>
<!-- <span>+918144055645
</span> -->
</div>
</div>
<hr>
<h3 class="Student">student coordinator</h3>
<div class="name-container">
<div class="name">
<span>Kumari Shambhavi
</span>
<!-- <span>+916200703969
</span> -->
</div>
<div class="name">
<span>Kajal Kumari</span>
<span></span>
</div>
</div>
<hr>
<div class="Event">
<p>Event Category:- <span>Technical Event
</span> </p>
<p>Event Type:- <span>Individual
</span> </p>
<p>venu:- <span>
Room No-2.01
</span> </p>
<p>Date:- <span>10-02-2024
</span> </p>
</div>
<button class="Register"><a href="https://forms.gle/69qgcLkTp1dPWoZLA">Register</a></button>
<script>
document.getElementById('menuToggle').addEventListener('click', function() {
console.log('Menu toggle clicked');
document.getElementById('menuItems').classList.toggle('active');
});
</script>
</body>
</html>