-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (125 loc) · 4.14 KB
/
index.html
File metadata and controls
125 lines (125 loc) · 4.14 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Github Profile Search App</title>
<link rel="icon" href="img/github.png" type="image/x-icon" />
<!--CSS Linking-->
<link rel="stylesheet" href="style.css" />
<!--FontAwesome CDN-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="whole">
<div class="header container">
<div class="header1">
<h1>gitsearch</h1>
<h3>Lets stalk someone on github</h3>
</div>
<div class="header2">
<button id="lightmode" onclick="dark()">
LIGHT <i class="fa-solid fa-sun"></i>
</button>
</div>
</div>
<div class="search container">
<form action="" class="form" id="theform">
<input type="text" id="searchuser" spellcheck="false" required />
<button id="submit">
<i class="fa-solid fa-magnifying-glass"></i>
</button>
</form>
</div>
<div class="container" id="result">
<div class="left">
<img src="" alt="" id="pfp" />
</div>
<div class="right">
<h1 id="name"></h1>
<a href="" id="username-url" target="_blank"
><h4 id="username"></h4
></a>
<p id="bio"></p>
<div class="main">
<div class="one">
<h4>Followers</h4>
<h5 id="follower"></h5>
</div>
<div class="two">
<h4>Following</h4>
<h5 id="following"></h5>
</div>
<div class="three">
<h4>Repositories</h4>
<h5 id="repo"></h5>
</div>
</div>
<div class="info">
<div class="top">
<div class="adress">
<i class="fa-solid fa-location-dot lower-icon"></i>
<p id="location"></p>
</div>
<div class="adress adress2">
<i class="fa-solid fa-link lower-icon"></i>
<a href="" id="website-url" target="_blank"
><p id="website"></p
></a>
</div>
</div>
<div class="bottom">
<div class="adress">
<i class="fa-brands fa-square-twitter lower-icon"></i>
<a href="" id="twitter-url" target="_blank"
><p id="twitter"></p
></a>
</div>
<div class="adress adress2">
<i class="fa-regular fa-building lower-icon"></i>
<p id="organization"></p>
</div>
</div>
</div>
<div class="join">
Join date:  
<p id="joindate"></p>
</div>
</div>
</div>
<div class="thecredit container">
<a href="https://github.com/irfanshadikofficial/" target="_blank"
><i class="fa-brands fa-github"></i
></a>
<a href="https://facebook.com/irfanshadikofficial" target="_blank"
><i class="fa-brands fa-facebook"></i
></a>
<a
href="https://www.youtube.com/channel/UCyv-8tjvvMctkIlljjw9Gfg"
target="_blank"
><i class="fa-brands fa-youtube"></i
></a>
<a
href="https://www.linkedin.com/in/irfanshadikofficial/"
target="_blank"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="https://twitter.com/irfanshadikoffi" target="_blank"
><i class="fa-brands fa-twitter"></i
></a>
<a href="https://irfanshadik.live" target="_blank"
><i class="fa-solid fa-globe"></i
></a>
</div>
</div>
<!--JS Linking-->
<script src="script.js"></script>
</body>
</html>