-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (87 loc) · 4.32 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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevDetective - CodeHelp</title>
<link rel="apple-touch-icon" sizes="180x180" href="./assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon-16x16.png">
<link rel="manifest" href="./assets/site.webmanifest">
<!-- Fonts -->
<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">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="container">
<header class="header">
<h1 class="title">DevDetective</h1>
<div id="btn-mode">
<p id="mode-text">DARK</p>
<div class="icon-container"><img id="mode-icon" src="./assets/images/moon-icon.svg" alt=""></div>
</div>
</header>
<main>
<div id="app">
<div class="searchbar-container active">
<input type="search" name="user-input" id="input" placeholder="Enter a GitHub username..." required>
<div class="error">
<p id="no-results">no search results</p>
</div>
<button class="btn-search" id="submit">Search</button>
</div>
<div class="profile-container">
<div class="profile-content">
<div class="profile-header">
<img id="avatar" src="#" alt="">
<div class="profile-info-wrapper">
<div class="profile-name">
<h2 id="name"></h2>
<a href="#" target="_blank" rel="noopener noreferrer" id="user"></a>
</div>
<p id="date"></p>
</div>
</div>
<p id="bio"></p>
<div class="profile-stats-wrapper">
<div class="profile-stat">
<p class="stat-title">Repos</p>
<p id="repos" class="stat-value"></p>
</div>
<div class="profile-stat">
<p class="stat-title">Followers</p>
<p id="followers" class="stat-value"></p>
</div>
<div class="profile-stat">
<p class="stat-title">Following</p>
<p id="following" class="stat-value"></p>
</div>
</div>
<div class="profile-bottom-wrapper">
<div class="profile-info">
<div class="bottom-icons"><img src="./assets/images/location-icon.svg" alt=""></div>
<p id="location"></p>
</div>
<div class="profile-info">
<div class="bottom-icons"><img src="./assets/images/website-icon.svg" alt=""></div>
<a href="#" id="page"></a>
</div>
<div class="profile-info">
<div class="bottom-icons"><img src="./assets/images/twitter-icon.svg" alt=""></div>
<a href="#" id="twitter"></a>
</div>
<div class="profile-info">
<div class="bottom-icons"><img src="./assets/images/company-icon.svg" alt=""></div>
<p id="company"></p>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
<script src="./script.js"></script>
</body>
</html>