-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.01 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Github User Data</title>
<link rel="icon" href="https://www.google.com/s2/u/0/favicons?domain=github.com" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<img src="" alt="User Avatar" class="user_avatar">
<div class="name-form">
<input type="text"
placeholder="username"
class="name-form_input"
>
<button type="submit" class="name-form_btn">Show</button>
</div>
<div class="user_info" hidden>
<i class="fab fa-github"></i>
<a class="user_name" target="_blank"></a>
<div class="user_repos"></div>
</div>
</div>
<!-- Script -->
<script src="script.js" type="module"></script>
</body>
</html>