-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (24 loc) · 1.06 KB
/
index.html
File metadata and controls
41 lines (24 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Group API Project: GitHub User Info</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<p class="large">
<strong><a href="https://glitch.com/edit/#!/join/826ce4c3-4848-4d3e-b8f0-8633dd4b14d5">Click here to write the code with us!</a></strong>
</p>
<main>
<h1>Group API Project: GitHub User Info</h1>
<p>Enter a GitHub username in the text box and click "Submit" to see that user's name and profile photo:</p>
<input id="inputElem" type="text">
<button id="submitButton">Submit</button>
<h2 id="userNameElem">(User's Name Here)</h2>
<img id="userPhotoElem" src="https://upload.wikimedia.org/wikipedia/commons/7/7c/Profile_avatar_placeholder_large.png">
</main>
</body>
</html>