-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (89 loc) · 3.03 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
<!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="css/style.css">
<script src="js/script.js" defer></script>
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<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">
<title>CPWD | GitHub user search app</title>
</head>
<body>
<header>
<div class="logo">
<h1>devfinder</h1>
</div>
<div class="theme" id="theme">
<div class="setting">
<p class="light-setting">Light</p>
<p class="dark-setting">Dark</p>
</div>
</div>
</header>
<main>
<form class="">
<input type="text" name="username" id="username" placeholder="Search GitHub username...">
<span>No results</span>
<img src="assets/icon-search.svg" alt="search">
<button type="submit">Search</button>
</form>
<div class="box-wrap">
<div class="box-header">
<div class="profile-picture" id="profile-picture">
<img src="assets/Bitmap.png" alt="Profile Picture">
</div>
<div class="user-info">
<div class="left">
<h2 id="name">The Octocat</h2>
<h3 class="user" id="GitHub-username"><a href="#">@octocat</a></h3>
</div>
<p class="joined" id="joined">Joined 25 Jan 2011</p>
</div>
</div>
<div class="bio">
<p id="bio">Lorem ipsum dolor sit amet consectetur adipisicing elit. Maiores quisquam delectus nostrum.</p>
</div>
<div class="stats">
<div class="stat-1">
<h4>Repos</h4>
<div class="stat-num" id="repo">8</div>
</div>
<div class="stat-2">
<h4>Followers</h4>
<div class="stat-num" id="followers">3938</div>
</div>
<div class="stat-3">
<h4>Following</h4>
<div class="stat-num" id="following">9</div>
</div>
</div>
<div class="social">
<div class="link location">
<div><img src="assets/icon-location.svg" alt="location"></div>
<p id="location">San Francisco</p>
</div>
<div class="link cite">
<div><img src="assets/icon-website.svg" alt="website"></div>
<p id="cite">https://github.blog</p>
</div>
<div class="link twitter unavailable">
<div><img src="assets/icon-twitter.svg" alt="twitter"></div>
<p id="twitter">Not Available</p>
</div>
<div class="link company">
<div><img src="assets/icon-company.svg" alt="company"></div>
<p id="company">@github</p>
</div>
</div>
</div>
</main>
<footer>
<div class="attribute">
<p>Coded by <a href="https://carlospwd.netlify.app/" target="_blank">Carlos Perez</a></p>
</div>
</footer>
</body>
</html>