-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.37 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
<!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>Get GitHub User Details</title>
<link href="/styles.css" rel="stylesheet">
</head>
<body>
<div id="details">
<h1>Get Github User Details</h1>
<small style="display: block;">Enter Github username</small>
<input id ="username" placeholder="Eg : veereshbv04">
<button id="search">Search</button>
<div ><h2 id="for-error"></h2></div>
</div>
<div id="for-success">
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
<div class="outPutList"></div>
</div>
<script src="/app.js"></script>
<footer>
<h2 style="font-size: 2em; font-weight: bolder; color:white;">Veeresh B V</h2>
<h3><a href="https://www.linkedin.com/in/veereshbv04/" style="text-decoration: none;">Linkedin</a></h3>
</footer>
</body>
</html>