-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (29 loc) · 922 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Github profile finder</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section id="navbar">
<ul>
<li><a href="https://github.com/siddhi-244/FindMe"><i class="icon uil uil-github"></i></a>FindMe</li>
</ul>
</section>
<div class="main">
<div class="box">
<input class="input" autofocus id="username" type="text" name="" autocomplete="off">
<button id="search" class="btn">Search <i class="uil uil-search"></i></button>
</div>
<div class="output">
</div>
</div>
<div class="container">
<p class="footer"> 💗 Made by Siddhi Bhanushali 💗</p>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>