-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
49 lines (45 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Loren Kociko">
<meta name="description" content="GitHub Followers and Following Tracker">
<meta name="keywords" content="github, followers, following, track, checker, check, unfollow">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Follower Tracker</title>
<link rel="stylesheet" href="./git.css">
</head>
<body>
<main>
<h1>GitHub username:</h1>
<div id="inputs">
<input type="text" id="inputedUsername">
<input type="button" id="searchbtn" value="Search">
</div>
<div id="fold">
<input type="button" class="hidden" id="showall" value="All" disabled>
<input type="button" class="hidden" id="showchanges" value="Changes" disabled>
<input type="button" class="hidden" id="save" value="Save" disabled>
</div>
<div id="msg"></div>
<section id="grid">
<div id="followers" class="box">
<ul id="followersList">
<li>
<h2>Followers:</h2>
</li>
</ul>
</div>
<div id="following" class="box">
<ul id="followingList">
<li>
<h2>Following:</h2>
</li>
</ul>
</div>
</section>
</main>
<script src="./code.js"></script>
</body>
</html>