-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (38 loc) · 1.98 KB
/
index.html
File metadata and controls
50 lines (38 loc) · 1.98 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
<!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="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>GitHub Profile View</title>
</head>
<body class="h-100 gradient-custom-2">
<h1 style="text-align: center;" class="pt-5">GitHub User Search</h1>
<section class="mb-5">
<div class="container h-100">
<div class="row d-flex justify-content-center">
<div class="col col-lg-9 col-xl-8">
<form class="d-flex py-5" >
<input class="form-control me-2" type="search" placeholder="Enter the userID" aria-label="Search">
<button id="userSearchButton" class="btn btn-success" type="button">Search</button>
</form>
<div class="card">
</div>
<div class="followers-container doNotDisplay">
<h2>Followers</h2>
<div class="followers mt-3" >
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>