-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (104 loc) · 3.73 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en" color-mode="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Libre+Franklin:ital,wght@1,300&family=Outfit:wght@300;400;600&family=Red+Hat+Text:wght@700&family=Space+Mono&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<title>GitHub user search app</title>
</head>
<body>
<div class="container">
<section class="">
<header>
<div class="head">devfinder</div>
<div class="light-dark mode">
<button
class="color-mode__btn light--hidden"
aria-label="Toggle light mode"
>
LIGHT
<img src="images/icon-sun.svg" alt="" />
</button>
<button
class="color-mode__btn dark--hidden"
aria-label="Toggle dark mode"
>
DARK
<img src="images/icon-moon.svg" alt="" />
</button>
</div>
</header>
<div class="search">
<div class="searchText">
<img src="images/icon-search.svg" alt="" />
<input type="text" placeholder="Search Github username..." />
</div>
<div class="searchbtn">Search</div>
</div>
<div class="resultBody">
<div class="githubHead">
<div class="mainImg"></div>
<div class="githubInfo">
<div class="githubUser">Github Username</div>
<div class="githubUserName"><a href="">@githubusername</a></div>
<div class="githubJoinedDate">Joined Date</div>
</div>
</div>
<div class="githubFact">
<div class="githubBio">Github Bio...</div>
<div class="githubRepo">
<div class="repos">
<div class="repoHeading">Repos</div>
<div class="repoTotal">0</div>
</div>
<div class="followers">
<div class="followerHeading">Followers</div>
<div class="followerTotal">0</div>
</div>
<div class="following">
<div class="followingHeading">Following</div>
<div class="followingTotal">0</div>
</div>
</div>
<div class="githubSocial">
<div class="location">
<img src="images/icon-location.svg" alt="" />
<p class="locations">Location</p>
</div>
<div class="twitter">
<img src="images/icon-twitter.svg" alt="" />
<p class="twit">Twitter</p>
</div>
<div class="website">
<img src="images/icon-website.svg" alt="" />
<p class="websites">Website</p>
</div>
</div>
</div>
</div>
</section>
</div>
<section class="">
<div class="repos_cont">
<div class="cards">
<h2>Repo Name</h2>
<a href="/">Take a look at this repo </a>
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>