-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbugsBunny.html
More file actions
202 lines (180 loc) · 8.94 KB
/
Copy pathbugsBunny.html
File metadata and controls
202 lines (180 loc) · 8.94 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
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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="logo.png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<title>RetroCoders</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Hugo 0.83.1">
<title>Cover Template · Bootstrap v5.0</title>
<link rel="canonical" href="https://getbootstrap.com/docs/5.0/examples/cover/">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="apple-touch-icon" href="/docs/5.0/assets/img/favicons/apple-touch-icon.png" sizes="180x180">
<link rel="icon" href="/docs/5.0/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="/docs/5.0/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
<link rel="manifest" href="/docs/5.0/assets/img/favicons/manifest.json">
<link rel="mask-icon" href="/docs/5.0/assets/img/favicons/safari-pinned-tab.svg" color="#7952b3">
<link rel="icon" href="/docs/5.0/assets/img/favicons/favicon.ico">
<meta name="theme-color" content="#7952b3">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
.container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%;
/* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body class="d-flex h-100 text-white bg-dark">
<div class="cover-container d-flex w-100 h-100 p-4 mx-auto flex-column">
<header class="mb-auto">
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark">
<div class="container-fluid">
<img src="logo.png" class="img-fluid rounded-circle" style="width: 40px; height: 40px;" alt="logo">
<a class="navbar-brand text-success ms-1 " href="cover.html">RetroCoders</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#Rules">Rules</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle " href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Problems
</a>
<ul class="dropdown-menu dropdown-menu-dark" aria-labelledby="navbarDropdown">
<li class="nav-item">
<a class="nav-link" href="#">Challenge1</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Challenge2</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Challenge3</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Challenge4</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Challenge5</a>
</li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle " href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Solution
</a>
<ul class="dropdown-menu dropdown-menu-dark" aria-labelledby="navbarDropdown">
<li class="nav-item">
<a class="nav-link" href="#">Coming Soon</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="container-fluid">
<img src="bugs5.png" class="img-fluid mt-5 border border-danger mx-auto d-block"
style="width: 300px; height: 300px;" alt="LOGO">
<h1 class="ms-1 mt-4 text-success text-center"><u>Contest Round : 001 </u></h1>
<p class="font-italic font-size text-center">Hello, everyone. Thank you for having me. My name is <strong>Farhan
Khan</strong>, and I am going to be organize our first programming contest. The problems are created by
<strong>Anurag Kumar
Gupta</strong>. So, enjoy the contest and have fun.</p>
<hr>
<h1 class="ms-1 text-success text-center"><u>Theme: BUGS BUNNY</u></h1>
<p class="text-center">We all know bungs bunny. He is our favourite childhood character. He always make us laugh
whenever we are sad but
today, bugs bunny upset because of his life situations. he always created problems and now he wants
your help to live a peacefull life. Will you help him?<br></p>
<img src="bugsB1.jpg" class="img-fluid mx-auto rounded d-block" style="width: 300px; height:300px;" alt="Bugs Bunny">
<p class="text-center mt-2"><strong class="mt-3"><u>bugs bunny Theme song</u></strong>
<br>
<audio class="mt-3" controls="controls" preload="auto" src="bugsTheme.mpeg" type="audio/mpeg">
</audio>
</p>
<hr>
<h1 class=" text-success text-center" id="Rules"><u>Rules</u></h1>
<h5 class="text-center">There are some procedures and rules which you need to follow for contest:</h5>
<ul>
<li>
<h6>You allowed to use only C or C++ programming languages.</h6>
</li>
<li>
<h6>If you dont have laptop, you can use online compiler.</h6>
</li>
<li>
<h6>Points are given on the basis of your submission</h6>
</li>
<li>
<h6>1 point per problem will accounted.</h6>
</li>
<li>
<h6>You need to summit your files(.c or .cpp) one my whatsapp.</h6>
</li>
<li>
<h6>before submission, you have to clear given test case, otherwise no point will be acoounted.</h6>
</li>
<li>
<h6>Those who use online compiler, will give their solution in text format.</h6>
</li>
</ul>
<p>I hope so, you all will follow these rules and co-operate with us. After the contest, all students who
participate in contest will be provided with participation certificate.</p>
<hr>
<h1 class="text-success text-center"><u>Problems</u></h1>
<p class="text-center">Problem will be soon going to be updated. Be ready.</p>
<hr>
<footer class="mt-auto text-white-50 text-center">
<p>RetroCoders Contest <a href="#" class="text-success">@RetroCoders</a> by <a href="#"
class="text-success">@farhan</a> and <a href="#" class="text-success">@Anurag</a></p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>