-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (33 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GitHub User Card</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div class="card">
<h1 class="title">GitHub user card</h1>
<p style="margin-bottom: 10px">A project to pull data from GitHub REST API, no library used build with vanilla javascript only.</p>
<p>If you liked the project smash that star button on the <a href="https://github.com/raajnadar/github-user-card" target="_blank" class="link">Github Repository</a>.</p>
</div>
</div>
<div class="container">
<div class="card">
<form id="search-form">
<input class="input-element" id="username" type="text" placeholder="Enter the username" autocomplete="off" />
</form>
<div id="result"></div>
</div>
</div>
<div class="container">
<div class="card">
<p class="credits">Designed & developed by <a class="link" href="https://raajnadar.github.io">Rajendran Nadar</a></p>
</div>
</div>
<script type="text/javascript" src="./js/main.js"></script>
</body>
</html>