-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 1.89 KB
/
Copy pathindex.html
File metadata and controls
65 lines (58 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css">
<title>Followers</title>
</head>
<body>
<nav class="navbar bg-light container-fluid">
<div class="container text-decoration-underline">
<a class="navbar-brand" href="https://github.com/Mehmet-github06" target="_blank">Mehmet Doğan</a>
</div>
</nav>
<header>
<h2 class="text-center">Github Followers</h2>
</header>
<main class="container">
<search class="d-flex mx-auto justify-content-center">
<div class="input-group w-50 mb-3">
<input
type="text"
class="form-control"
placeholder="Github's Username"
aria-label="Github's Username"
aria-describedby="button-addon2"
id="searchText"
autofocus
/>
<button class="btn btn-warning" type="button" id="button">
Get Followers
</button>
</div>
</search>
<search class="d-flex mx-auto justify-content-center">
<div class="input-group w-50 mb-3">
<input
type="search"
class="form-control"
placeholder="Search For Github's Username"
aria-label="Github's username"
aria-describedby="button-addon2"
id="searchFollowers"
autofocus
/>
</div>
</search>
<section class="row row-cols-1 row-cols-md-3 g-4 cards" id="cards"></section>
</main>
<script src="app2.js"></script>
</body>
</html>