-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (57 loc) · 1.72 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
<!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.0">
<title>Link-Master</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" type="image/jpg" href="./link.svg"/>
</head>
<body>
<!-- <div id="drkbtndiv">
<button id="drkbtn" onclick="toggleTheme()">Dark</button>
</div> -->
<div id="logo">
<a href="#">
<img id="logoimg" src="./link.svg" alt="">
</a>
<a id="home" href="#">
<h3 id="hometext">Link-Master</h3>
</a>
</div>
<div>
<form id="search-form">
<input type="search"
placeholder="Enter your README URL..."
id="search-input"
required
autocomplete="off"
/>
<div id="but">
<button id="search-button">Go</button>
</div>
</form>
</div>
<div id="sep">
<h1>Here you go ...</h1>
</div>
<div id="listholder">
<dl id="successlist">
</dl>
</div>
<div id="lower">
<div id="madewithdiv">
<h5 id="madewith">Made with <span id="hrt" >❤</span> by <a href="https://github.com/code-reaper08">code-reaper08</a></h5>
</div>
<div id="licdiv">
<h5 id="lic">Licensed under MIT</h5>
<h5 id="lic"> Vishwa.R @2021</h5>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="./src/input.js"></script>
<script src="bundle.js"></script>
<script src="indexbundle.js"></script>
</body>
</html>