-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (64 loc) · 2.97 KB
/
index.html
File metadata and controls
67 lines (64 loc) · 2.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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>GIthub finder</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link
rel="stylesheet"
href="./all.min.css"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://bootswatch.com/5/lumen/bootstrap.min.css">
<link rel="stylesheet" href="./style.css" />
</head>
<body class="">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="https://namayaladl-githubfinder.netlify.app/"> GITHUB FINDER </a>
</div>
</nav>
<div class="container" id="container">
<div class="card card-body mt-4" id="card">
<h3 class="text-dark">Search github user</h3>
<p>Enter github username below to search for profile and repos</p>
<form action="">
<input
type="text"
class="form-control"
placeholder="Type to find github user"
id="gitfinder"
/>
</form>
</div>
</div>
<div id="profile" class="container"></div>
<div class="container"><h2 class="mt-4">Latest repos</h2></div>
<div id="repose" class="container"></div>
<div class="container text-center">
<footer
class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top "
>
<div class="d-flex align-items-center text-center">
<span class="mb-3 mb-md-0 text-muted"
>©
<script>
const year = new Date();
document.write(year.getFullYear());
</script> Daud Namayala
<a href="https://twitter.com/daudln"><span class="mb-md-0 mx-4 text-muted bi bi-twitter text-primary" ></span></a>
<a href="https://github.com/DaudLN"><span class="mb-md-0 mx-4 text-muted bi bi-github text-dark" ></span></a>
<a href="https://instagram.com/daudln"><span class="mb-md-0 mx-4 text-muted bi bi-instagram text-danger" ></span></a>
</span
</div>
</footer>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.min.js" integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous"></script>
<script src="./github.js"></script>
<script src="./ui.js"></script>
<script src="./index.js"></script>
</html>