-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (87 loc) · 3.56 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="pl">
<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 Profile Searcher</title>
<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=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/1f5050912b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./dist/css/style.min.css">
</head>
<body>
<div class="container">
<div class="heading">
<h1>github finder</h1>
</div>
<div class="search-bar">
<div class="input">
<img src="./dist/img/magnifying-glass-svgrepo-com.svg" alt="">
<input type="text" id="input" placeholder="Enter GitHub username...">
</div>
<button id="search">Search</button>
</div>
<div class="alert">
<p class="alert-text">user not found</p>
</div>
<div class="main">
<div class="main-information">
<div class="github-avatar">
<img class="avatar" src="./dist/img/octocat.png" alt="">
</div>
<div class="info">
<h2 class="name">The Octocat</h2>
<h3 class="login">@octocat</h3>
<h4 class="date">Joined 02/05/2017</h4>
</div>
</div>
<div class="bio">
<p class="bio-paragraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Amet repudiandae
iusto, delectus
debitis
officiis quia ex dolorem qui velit tenetur numquam blanditiis necessitatibus eos sint eligendi
harum
quae rerum veritatis.</p>
</div>
<div class="stats">
<div class="repos">
<p>Repos</p>
<p class="repos-amount">8</p>
</div>
<div class="followers">
<p>Followers</p>
<p class="followers-amount">3938</p>
</div>
<div class="following">
<p>Following</p>
<p class="following-amount">9</p>
</div>
</div>
<div class="more-info">
<div class="location">
<img src="./dist/img/location-pin-svgrepo-com.svg" alt="">
<p class="user-location">San Francisco</p>
</div>
<div class="website">
<img src="./dist/img/link-svgrepo-com.svg" alt="">
<p class="user-website">https://github.blog</p>
</div>
<div class="twitter">
<img src="./dist/img/twitter-svgrepo-com.svg" alt="">
<p class="user-twitter">Not Available</p>
</div>
<div class="company">
<img src="./dist/img/building-svgrepo-com.svg" alt="">
<p class="user-company">@github</p>
</div>
</div>
</div>
<div class="footer">
<p>made with <img src="./dist/img/heart-svgrepo-com.svg" alt=""> by kuba klatt</p>
</div>
</div>
<script src="./dist/js/main.min.js"></script>
</body>
</html>