forked from knightfury-github/SpiderHost
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (52 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/png" href="./img/favicon.png">
<title>SpiderHost</title>
</head>
<body>
<!-- main start -->
<div class="main" id="main">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="main__text-container">
<h1 class="main__title">SpiderHost - Profile Finder <br> for GitHub</h1>
<p class="main__subtitle">Check out the repositories, followers and more,
<br> just by entering a username!</p>
</div>
<div class="main__input-container">
<input type="text" id="search" class="main__input" placeholder="Enter a username...">
<span>
<a class="btn btn--shallow searchButton">Search</a>
</span>
</div>
</div>
</div>
<div class="main__profile-container">
<div class="main__profile">
<div class="row">
<div class="col-md-6">
<p class="main__profile-name main__profile-key">
</p>
<p class="main__profile-username main__profile-key">
</p>
</div>
<div class="col-md-6">
<p class="main__profile-repos main__profile-key">
</p>
<p class="main__profile-url main__profile-key">
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./js/app.js"></script>
<!-- main end -->
</body>
</html>