-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.95 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
<!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">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Github Profiles</title>
</head>
<body>
<div class="container">
<h1 class="main-heading"> Github Profiles </h1>
<small style="color:rgb(43, 43, 43)">- Serach Github Profiles -</small>
<div class="main">
<form class = 'form'>
<input type="text" class="search" placeholder="Search Github User">
</form>
<div class="box-wrapper">
<div class="userImg">
<img src="img-etc/githubUser.png" alt="">
</div>
<div class="userInfo">
<h1 class="userName">UserName</h1>
<div class="userExtraInfo">
<p class="f1-font">Bio: <span class="bio f2-font">User Bio</span></p>
<p class="f1-font">Location: <span class="location f2-font" id="location">User Location</span></p>
<p class="f1-font">Email: <span class="mail f2-font">User Email</span></p>
</div>
<div>
<span class="followers f1-font "> <span class="count-follower f2-font">0</span> Followers</span>
<span class="following f1-font"> <span class="count-following f2-font">0</span> Following</span>
<span class="publicRepo f1-font"> <span class="count-repo f2-font">0</span> Repo</span>
<div class="userLinks">
<a href="#" class="profileLink">Visit-profile</a>
<a href="#" class="repoLink">Visit-repos</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>