-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
51 lines (42 loc) · 2.13 KB
/
code.html
File metadata and controls
51 lines (42 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="./assets/favicon.png" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stupid Webpage</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/line-numbers/prism-line-numbers.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="stylesheet" type="text/css" href="./css/code.css">
</head>
<body>
<div class="search_stuff" id="search_stuff">
<button class="dropdown-button" id="dropdown_language_button" onclick="toggleLanguageDropdown()"></button>
<div class="dropdown-content" id="dropdown_language">
<button class="dropdown-item" onClick="filterByLanguage('all')">All</button>
</div>
<input type="text" id="search_title" placeholder="Input the Description" oninput="">
<div id="search_no_result">
<p>We are really sorry for your inconvenience.</p>
<p>Currently, there are No matching codes in our database.</p>
<p>This page is still in development, look out for it in the future!</p>
<p>But for now, try with a different keyword</p>
</div>
</div>
<div id="codes_helper" onclick="PhoneCssHelp()">
The codes in phone version are not displayed.<br>
More about it here.
</div>
<div id="code_page">
</div>
<div class="codes" id="codes">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-csharp.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/darkreader@4.9.34/darkreader.min.js"></script>
<script src="./js/main.js"></script>
<script src="./js/code.js"></script>
</body>
</html>