-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
45 lines (45 loc) · 1.59 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
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codeyry</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="mainDiv">
<div class="header">
<input class="inputBox" type="text" name="search" id="search" placeholder="Search by github username">
<button class="search">Find Profile</button>
</div>
<div class="details hidden">
<div class="topView">
<img src="" alt="" class="pp">
<div class="ppDetails">
<h4 class="username"></h4>
<p class="bio"></p>
<div class="moreDetails">
<div class="fol">
<h5 class="follower"></h5>
<p class="folT">Followers</p>
</div>
<div class="fol">
<h5 class="following"></h5>
<p class="folT">Following</p>
</div>
<div class="fol">
<h5 class="repository"></h5>
<p class="folT">Repository</p>
</div>
</div>
</div>
</div>
<div class="bottomView">
<h4 class="repoH">Repositories:</h4>
<div class="repoList"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>