-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 2.29 KB
/
index.html
File metadata and controls
52 lines (44 loc) · 2.29 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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description"
content="Find GitHub profiles quickly using this GitHub Account Finder, a basic JavaScript app to search user accounts." />
<meta name="keywords"
content="GitHub account finder, JavaScript GitHub search, GitHub user search, basic account finder" />
<meta property="og:title" content="GitHub Account Finder" />
<meta property="og:description"
content="Find GitHub profiles quickly using this GitHub Account Finder, a basic JavaScript app to search user accounts." />
<meta property="og:image" content="https://coderespite.com/image/js-projects/github-account-finder.png" />
<meta property="og:url" content="https://coderespite.com/projects/js-projects/github-account-finder" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GitHub Account Finder" />
<meta name="twitter:description"
content="Find GitHub profiles quickly using this GitHub Account Finder, a basic JavaScript app to search user accounts." />
<meta name="twitter:image" content="https://coderespite.com/image/js-projects/github-account-finder.png" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Github user finder</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="errorId"></h1>
<div class="main">
<label for="inputId">Enter a github username</label>
<input id="inputId" type="text" placeholder="">
<div class="container">
<figure>
<img id="imageId" src="" alt="">
<figcaption id="caption"></figcaption>
</figure>
<h3 class="name">Name: <span id="nameId"></span></h3>
<p class="username">user name: <span id="usernameId"></span></p>
<p class="repos">Public Repo: <span id="reposId"></span></p>
<p class="bio">Bio: <span id="bioId"></span></p>
<p class="location">Location: <span id="locationId"></span></p>
<p class="follower">Follower: <span id="followerId"></span></p>
<p class="following">Following: <span id="followingId"></span></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>