-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscoring.html
More file actions
110 lines (109 loc) · 4.3 KB
/
Copy pathscoring.html
File metadata and controls
110 lines (109 loc) · 4.3 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
<html>
<head>
<title>Multiverse Themed Hackathon</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" , initial-scaler="1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="footer.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<div class="scoringimgresponsive">
<div class="topnav" id="myTopnav">
<img
src="favicon-bg.png"
alt="fav-icon"
height="60px"
width="60px"
style="float: left; padding: 12px"
id="fav-icon"
/>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<a href="prizes.html">Prizes</a>
<a href="scoring.html">Scoring</a>
<a href="rules.html">Rules</a>
<a href="about.html">About</a>
<a href="index.html" class="active">Home</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<img src="bannerimage.jpeg" alt="about" class="scoring-img" />
<div class="scoring-txt">
<!-- <h1><img src="https://see.fontimg.com/api/renderfont4/WyJZn/eyJyIjoiZnMiLCJoIjo4OCwidyI6MTI1MCwiZnMiOjcwLCJmZ2MiOiIjRkZGRkZGIiwiYmdjIjoiI0Y0RjNGMCIsInQiOjF9/U0NPUklORw/dragonlord.png" alt="title"></h1> -->
<h1>
<img
srcset="
https://see.fontimg.com/api/renderfont4/WyJZn/eyJyIjoiZnMiLCJoIjo4OCwidyI6MTI1MCwiZnMiOjcwLCJmZ2MiOiIjRkZGRkZGIiwiYmdjIjoiI0Y0RjNGMCIsInQiOjF9/U0NPUklORw/dragonlord.png 480w,
https://see.fontimg.com/api/renderfont4/WyJZn/eyJyIjoiZnMiLCJoIjo4OCwidyI6MTI1MCwiZnMiOjcwLCJmZ2MiOiIjRkZGRkZGIiwiYmdjIjoiI0Y0RjNGMCIsInQiOjF9/U0NPUklORw/dragonlord.png 1500w
"
sizes="(max-width: 600px) 480px"
src="https://see.fontimg.com/api/renderfont4/WyJZn/eyJyIjoiZnMiLCJoIjo4OCwidyI6MTI1MCwiZnMiOjcwLCJmZ2MiOiIjRkZGRkZGIiwiYmdjIjoiI0Y0RjNGMCIsInQiOjF9/U0NPUklORw/dragonlord.png"
alt="title"
/>
</h1>
</div>
</div>
<div class="scoring" style="box-sizing: border-box">
<div class="scoringimage">
<img
src="https://cdn.searchenginejournal.com/wp-content/uploads/2014/12/shutterstock_178449461.jpg"
/>
</div>
<div class="scoringtext">
<ul style="list-style-type: square;">
<li>Each challenge has a pre-determined score.</li>
<li>
A teams' score depends on the number of test cases a teams' code
submission successfully passes.
</li>
<li>
If a team submits more than one solution per challenge, then the
teams' score will reflect the highest score achieved.
</li>
<li>
In a game challenge, the teams' score will reflect the last code
submission.
</li>
<li>
Teams are ranked by score. If two or more teams' achieve the same
score, then the tie is broken by the total time taken to submit the
last solution resulting in a higher score
</li>
</ul>
</div>
</div>
<footer>
<div class="footer-content">
<h3>CodeX</h3>
<p>“Eat Code Repeat” </p>
<p> <br>Contact Us<br>Email: codex_sig@gitam.in </p>
<ul class="socials">
<li><a href="https://www.instagram.com/codex_gitam/"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCZ9sd4Lj85osgKLdEO9Fi7w"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
<div class="footer-bottom">
<p>Copyright ©2022 Codex</p>
</div>
</footer>
</body>
</html>