-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
69 lines (53 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>GitHub User Finder O_O </title>
<!--import css----------------------------------------------------------------------------------------------------->
<link rel="stylesheet" href="./css/style.css"/>
<!--import google 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=Hubballi&display=swap" rel="stylesheet">
</head>
<body>
<section class="main-container">
<div class="search-section">
<input type="text"
name=""
id="input"
placeholder="Enter Github UserName"
class="txtUser"
/>
<div id="search" onclick="getUser()" class="btnSearch">Search</div>
</div>
<div class="profile-section">
<div class="main-info-section">
<img src="assets/github.png" alt="avatar" id="profile-img"/>
<span class="name" id="name">Mindula Dilthushn</span>
<a href="" id="username">@Mindula-Dilthushan</a>
</div>
<div class="mid-section">
<p id="bio">SE | EH | LiFe S 🚀🌎</p>
<p><span id="repo">118</span> Repositories</p>
</div>
<div class="follow-section">
<div class="followers">
<span class="no" id="followers">112</span>
Followers
</div>
<div class="following">
<span class="no" id="following">252</span>
Following
</div>
</div>
</div>
<div class="footer-section">
<p class="footer-text">Made with Mindula Dilthushan    ^_~ </p>
</div>
</section>
<!--import js---------------------------------------------------------------------------------------------------------->
<script src="js/mainFunctions.js"></script>
</body>
</html>