-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 3.04 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>
<title>Unsolved Codeforces Problems</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="57x57" href="https://sta.codeforces.com/s/11868/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://sta.codeforces.com/s/11868/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://sta.codeforces.com/s/11868/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://sta.codeforces.com/s/11868/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="https://sta.codeforces.com/s/11868/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="https://sta.codeforces.com/s/11868/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="https://sta.codeforces.com/s/11868/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://sta.codeforces.com/s/11868/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://sta.codeforces.com/s/11868/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://sta.codeforces.com/s/11868/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="https://sta.codeforces.com/s/11868/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://sta.codeforces.com/s/11868/favicon-16x16.png">
<meta property="og:title" content="Unsolved Codeforces Problems" />
<meta property="og:image" content="https://sta.codeforces.com/s/74929/images/codeforces-telegram-square.png" />
<meta property="og:url" content="https://sadykhzadeh.github.io/unsolved-cf-problems/" />
<meta property="og:description" content="Website that shows unsolved problems of Codeforces user." />
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div id="flags">
<a href="?lang=en"><img src="./flags/gb.png" title="In English" alt="In English"></a>
<a href="?lang=ru"><img src="./flags/ru.png" title="По-русски" alt="По-русски"></a>
</div>
<h2>Unsolved Codeforces Problems</h2>
<input type="text" id="handle" placeholder="Input your handle here.">
<button id="start">🔎</button>
</br>
<input type="checkbox" id="doNotShowTags">
<label for="doNotShowTags" id="doNotShowTags-label"></label>
<a id="about"></a>
<table style="width:100%">
<caption id="counter" hidden></caption>
<thead id="table-main" hidden>
<tr>
<th id="numberOfTask">#</th>
<th id="nameTD">
</th>
<th id="tagsTD" hidden></th>
<th id="ratingTD"></th>
<th id="lastTD" colspan="2"></th>
</tr>
</thead>
<tbody id="table-list">
</tbody>
</table>
<script src="script.js "></script>
</body>
</html>