-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (88 loc) · 4.49 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
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
<!DOCTYPE html>
<htm lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Geek DSA Sheet</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Roboto+Mono&display=swap"
rel="stylesheet">
</head>
<body>
<!-- Code Here -->
<header>
<div style="margin: 20px; padding-bottom: 50px;">
<div class="header">
<img class="logo" src="./images/gh.png"></img>
</div>
<div class="header-content">
<h1 class="title-font">GEEK-SHEET</h1>
</div>
<div class="profile">
<h1 class="rightt">Om's <a href="#"><i class="fa-brands fa-github" style=" color: white;
font-size: 15px;"></i></a></h1>
</div>
<div class="midd">
<p><i class="fa-regular fa-sun fa-xl sunicon" style="color: #4674c3;"></i> </p>
</div>
</div>
</header>
<div style="margin-left: 40px;">
<input id="searchbar" onkeyup="search_question()" type="text" name="search"
placeholder="Search Questions..">
<p class="instruction">The searches will be highlighted in yellow</p>
<p class="instruction">To navigate through questions: Press n for navigating to next question, press p for
navigating to previous question</p>
<br><br>
</div>
<div id="progressbar"></div>
<div class="accordion">
</div>
<form action="submit" class="form formstyle">
<h1 class="title-font-form formh1" style="text-align: center;">FILL THE FORM FOR ADDING NEW QUESTIONS IN ANY
CATEGORY</h1>
<input type="text" id="category_num" name="category_num" placeholder="Number?" class="styleinput">
<label for="category_num" class="stylelabel">
<p class="formp">Enter category number (The number precedding the category name)</p>
</label><br>
<input type="text" id="question_name" name="question_name" placeholder="Question name?" class="styleinput">
<label for="question_name" class="stylelabel">
<p class="formp">Enter name of question you want to add in this category</p>
</label><br>
<input type="text" id="tags" name="tags" placeholder="Tags?" class="styleinput">
<label for="tags" class="stylelabel">
<p class="formp">Enter tags</p>
</label><br>
<input type="text" id="youtube_link" name="youtube_link" placeholder="YouTube link?" class="styleinput">
<label for="youtube_link" class="stylelabel">
<p class="formp">Enter YouTube link</p>
</label><br>
<input type="text" id="platform_link" name="platform_link" placeholder="Problem link?" class="styleinput">
<label for="platform_link" class="stylelabel">
<p class="formp">Platform link</p>
</label>
<div style="text-align: center;">
<button type="submit" class="submit button-style">Submit</button>
</div>
</form>
<hr>
<br>
<br>
<form action="submit" class="form formstyle">
<h1 class="title-font-form formh1" style="text-align: center;">FILL THE FORM FOR ADDING NEW CATEGORY</h1>
<input type="text" id="category" name="category" placeholder="Cateogry?" class="styleinput">
<label for="category_num" class="stylelabel">
<p class="formp">Enter category name </p>
</label><br>
<div style="text-align: center;">
<button type="submit" class="submitcategory button-style">Submit</button>
</div>
</form>
<script src="script.js"></script>
</body>
</html>