-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.04 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.04 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
<doctype html>
<head>
<title>GitHub Explorer</title>
<link href="ge.css" rel="stylesheet">
<script type="text/javascript" src="ge.js"></script>
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,900&display=swap" rel="stylesheet">
</head>
<header>
<h1>Welcome to GitHub Explorer</h1>
</header>
<body>
<table style="width:100%">
<tr>
<th>Name</th>
<td id="name"></td>
</tr>
<tr>
<th>Email ID</th>
<td id="email"></td>
</tr>
<tr>
<th>Repos</th>
<td id="repos"></td>
</tr>
<tr>
<th>Followers</th>
<td id="followers"></td>
</tr>
<tr>
<th>GitHub page</th>
<td><a href="www.github.com" id="url">GitHub Page</a></td>
</tr>
</table>
</body>
</html>