-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (24 loc) · 814 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fetch GitHub API</title>
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/style.css">
</head>
<body>
<main>
<i class="devicon-github-original"></i>
<section class="container">
<header>
<h2>Search User</h2>
<input type="text" id="input-search" placeholder="Enter the user's name on GitHub">
<input type="button" value="Search" id="btn-search">
</header>
<div class="profile-data"></div>
</section>
</main>
<script type="module" src="src/scripts/index.js"></script>
</body>
</html>