-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (62 loc) · 2.25 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Git User Hub</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="top">
<h1><strong>Github User Finder</strong></h1>
</header>
<div class="container">
<div class="input_wrapper">
<input type="text" placeholder="Enter github user name" class="input_user">
<div class="btn_submit">Search User</div>
</div>
<div class="row">
<div class="user_info">
<div class="user_img">
<img src="images/bg.png">
</div>
<div class="user_name">
<h3>Login Name</h3>
<h1>hound77</h1>
</div>
<div class="follow">
<div class="item followers_">
<p>Followers</p>
<span>00</span>
</div>
<div class="item follow_">
<p>Follow</p>
<span>00</span>
</div>
</div>
</div>
<div class="repo">
<h1><span class="fa fa-github"></span></h1>
<div class="repo_details">
<div class="item_">
<div class="repo_name">Repo</div>
<div class="repo_details_">
<div class="info_ star">
<i class="fa fa-star-o"></i> 00
</div>
<div class="info_ fork">
<p><i class="fa fa-code-fork"></i>00</p>
</div>
<div class="info_ size">
<p><i class="fa fa-file"></i>000kb</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>