-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
47 lines (39 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Problem Recommender</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="76x76" href="favicon_images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_images/favicon-16x16.png">
<link rel="manifest" href="/favicon_imagessite.webmanifest">
<link rel="mask-icon" href="favicon_images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-full">
<h1>Welcome to Problem Recommender</h1>
<p class="warn">Use Laptop for best Experience</p>
<div class="content">
<div>Codeforces Handle : </div>
<input type="text" name="Handle" id="handle-name" placeholder="Enter your codeforces handle" alt="Enter your codeforces handle" required>
<br>
<br>
<button class="btn btn-success" onclick="submitted()">Submit</button>
<br>
<div id="invalid"></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script src="ind.js"></script>
</body>
</html>