-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (75 loc) · 3.11 KB
/
index.html
File metadata and controls
95 lines (75 loc) · 3.11 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" id="theme-style" href="">
<title>Github Finder</title>
</head>
<body>
<main class="main">
<h1 class="main__heading--sr">Github Finder App</h1>
<header class="header">
<h2>devfinder</h2>
<div>
<div class="header__toggle header__toggle--light">
<p><b>LIGHT</b></p>
<img src="./assets/images/icon-sun.svg" alt="Icon to toggle to light mode">
</div>
<div class="header__toggle header__toggle--dark">
<p><b>DARK</b></p>
<img src="./assets/images/icon-moon.svg" alt="Icon to toggle to dark mode">
</div>
</div>
</header>
<section class="main__search">
<div class="main__search--div">
<img class="search__icon" src="./assets/images/icon-search.svg" alt="Icon to search for a user">
<input type="search" name="user-input" id="input" class="main__search--input" placeholder="Search Github user">
</div>
<button type="submit" class="search__submitBtn">Search</button>
</section>
<section class="user__details">
<div class="profile">
<img class="profile__avatar" src="./assets/images/avatar.png" alt="Avatar Image">
<div class="profile__header">
<p class="profile__details--name">The Octocat</p>
<p class="profile__details--login">@octocat</p>
<p class="profile__details--date profile__details--dateShow">Joined 25 Jan 2011</p>
</div>
<p class="profile__details--date profile__details--dateHidden">Joined 25 Jan 2011</p>
<div class="profile__bio">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
</p>
</div>
</div>
<div class="profile__stats">
<div>Repos <span class="stats__span--bold stats__repo">8</span></div>
<div>Followers <span class="stats__span--bold stats__followers">9941</span></div>
<div>Following <span class="stats__span--bold stats__following">9</span></div>
</div>
<div class="profile__div">
<div class="profile__info profile__info--location">
<img src="./assets/images/icon-location.svg" alt="Location icon">
<p class="profile__location--para">San Francisco</p>
</div>
<div class="profile__info profile__info--link">
<img src="./assets/images/icon-website.svg" alt="Link icon">
<p class="profile__link--para"> https://github.blog</p>
</div>
<div class="profile__info profile__info--twitter">
<img src="./assets/images/icon-twitter.svg" alt="Twitter icon">
<p class="profile__twitter--para">Not available</p>
</div>
<div class="profile__info profile__info--company">
<img src="./assets/images/icon-company.svg" alt="Company icon">
<p class="profile__company--para"> @github</p>
</div>
</div>
<!-- </div> -->
</section>
</main>
<script src="app.js"></script>
</body>
</html>