-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Github Finder</title>
</head>
<body>
<nav class="navbar bg-dark mb-5">
<a href="#" class="navbar-brand text-white">Github Finder</a>
</nav>
<div class="container">
<div class="search card card-body">
<h1>Search Github Users</h1>
<p>Enter the username to fetch details</p>
<input type="text" id="searchUser" class="form-control" placeholder="Enter username">
</div>
<br>
<div id="profile"></div>
</div>
<footer class="bg-dark text-white text-center mt-3 p-3">Github Finder ©</footer>
<script src="config.js"></script>
<script src="github.js"></script>
<script src="ui.js"></script>
<script src="app.js"></script>
</body>
</html>