-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (79 loc) · 3.62 KB
/
index.html
File metadata and controls
95 lines (79 loc) · 3.62 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" />
<!-- Title -->
<title>GitHub Profile Viewer | Search GitHub Users</title>
<!-- Meta Description (for SEO) -->
<meta name="description" content="A fast, responsive GitHub Profile Viewer to search any GitHub user and explore their bio, followers, and repositories." />
<!-- Meta Keywords (optional, not very useful now) -->
<meta name="keywords" content="GitHub, Github profile viewer, Github user search, repositories, JavaScript, frontend project asyncpranav" />
<!-- Author -->
<meta name="author" content="Pranav Singh Chandel" />
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<!-- Styles & Scripts -->
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/a2fa536777.js" crossorigin="anonymous" defer></script>
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="mainContainer">
<div class="searchContainer">
<form>
<div class="searchBox">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="search" name="search" id="search" autocomplete="off" placeholder="Search github username">
</div>
</form>
</div>
<div class="errorBox"><i class="fa-solid fa-xmark"></i> <span class="errorText"></span></div>
</div>
<div class="profileWrapper">
<!-- <div class="profileContainer">
<div class="profileHead">
<div class="profileImg">
<img src="https://avatars.githubusercontent.com/u/102846160?v=4" alt="user-image">
</div>
<div class="profileName">
<p class="profileNameText">Pranav singh chandel</p>
<p class="profileUsernameText">@asyncPranav</p>
</div>
</div>
<div class="bioContainer">
<p class="bioText">uweiw wiwe wowiow wwoiwe woiw</p>
</div>
<div class="followContainer">
<span><i class="fa-solid fa-user-group"></i></span>
<span class="followersText"><span class="followTextNum">300</span> Followers</span>
<span class="followingText"><span class="followingTextNum">20</span> Following</span>
</div>
</div>
</div> -->
</header>
<main>
<section class="reposSection">
<div class="reposTitleContainer">
<!-- <h2 class="reposTitle">📁 Repositories</h2> -->
</div>
<div class="reposContainer">
<!-- <div class="repoCard">
<a href="https://github.com/asyncPranav/your-repo" target="_blank" class="repoName">your-repo</a>
<p class="repoDesc">Short description of the repo...</p>
<div class="repoMeta">
<span class="repoLang">🌐 JavaScript</span>
<span class="repoStars">⭐ 12</span>
<span class="repoUpdated">🕒 Updated 2 days ago</span>
</div>
</div> -->
</div>
</section>
</main>
<footer>
<p>Made with ❤️ by <a href="http://github.com/asyncpranav" target="_blank"
rel="noopener noreferrer">asyncPranav</a></p>
</footer>
</body>
</html>