forked from Ugulberto/codeforces-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 1.93 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CodeProblem</title>
<link rel="icon" href="./src/img/favicon.ico" type="image/x-icon">
<link href="./src/styles/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main>
<div class="problem-sector">
<h1>Codeforces problem selector</h1>
<div id="info">
<div>
<h4>Difficulty: <span id="rating-num">2150</span></h4>
<input type="range" value="range" min="800" max="3500">
</div>
<div>
<h4>Tags</h4>
<select name="tags" id="tags">
<option value="">....</option>
<option value="implementation">Implementation</option>
<option value="math">Maths</option>
<option value="greedy">Greedy</option>
<option value="strings">Strings</option>
<option value="brute force">Brute force</option>
<option value="dp">DP</option>
<option value="probabilities">Probabilities</option>
<option value="data structures">Data structures</option>
</select>
</div>
</div>
<div id="div-btn">
<button id="btn-search">Buscar</button>
<button id="btn-random">Random</button>
</div>
<div class="card-res">
<fieldset>
<legend>Resultado</legend>
<section id="sect">
<h2 class="problem-title"></h2>
<h3 class="problem-value"></h3>
<h3 class="problem-value"></h3>
</section>
</fieldset>
<a id="go" href="">
<button>Go</button>
</a>
</div>
</div>
</main>
<script src="./src/scripts/doc.js"> </script>
</body>
</html>