forked from rahul2240/githubapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowuser.html
More file actions
28 lines (26 loc) · 726 Bytes
/
showuser.html
File metadata and controls
28 lines (26 loc) · 726 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Show user using GITHUB username</title>
<link rel="stylesheet" type="text/css" href="css/showuser.css">
</head>
<body>
<div class="container">
<h3>Information Generator</h3>
<br>
<p>Type your git username in the text field: </p>
<input type="text" id="username">
<button onclick="load()">Submit</button>
</div>
<div class="information">
<img src="" alt="" id="image">
<p>Name: <span id="name"></span></p>
<p>Username: <span id="user"></span></p>
<p>Location: <span id="location"></span></p>
<p id="bio"></p>
</div>
<script src="js/showuser.js"></script>
</body>
</html>