-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
55 lines (52 loc) · 1.6 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Github Profile Finder</title>
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="search-container">
<input
type="text"
name=""
id="input"
placeholder="Enter Github UserName"
class=""
/>
<button id="search">Search User</button>
</div>
<div class="profile-card">
<div class="main-info">
<img src="./assets/github-logo.png" alt="avatar" id="prof-img" />
<span class="name" id="name">Tajul Afreen</span>
<a href="" id="username"></a>
</div>
<div class="bio">
<p id="bio">A full stack developer</p>
<p><span id="repo">58</span> Repositories</p>
</div>
<div class="follow">
<div class="followers">
<span class="no" id="followers">49</span>
Followers
</div>
<div class="following">
<span class="no" id="following">19</span>
Following
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>