-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (58 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://subidroid.com/Images/title.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Subin Gyawali | GitHub Portfolio</title>
</head>
<body>
<div id="loading"></div>
<div class="main" hidden>
<div id="profile">
<div id="photo">
<img src="" alt="">
</div>
<div id="name">
<p></p>
<span></span>
</div>
</div>
<div class="other">
<div id="about" class="tab">
<div class="title">About Me</div>
<hr>
<div class="content">
<ul>
</ul>
</div>
</div>
<div id="repos" class="tab">
<div class="title">My Projects</div>
<hr>
<div class="content">
<ul>
</ul>
</div>
<div id="navigation">
<a id="prev-btn" onclick="return prevClicked()" href="javascript:void(0);">Previous</a>
<span id="pagination"></span>
<a id="next-btn" onclick="return nextClicked()" href="javascript:void(0);">Next</a>
</div>
</div>
<div id="social" class="tab">
<div class="title">Find Me On</div>
<hr>
<div class="content">
<ul>
</ul>
</div>
</div>
</div>
</div>
<script src="https://kit.fontawesome.com/be898dc532.js" crossorigin="anonymous"></script>
</body>
</html>