-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 1.3 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
40
41
<!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">
<!-- Bootstrap CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Football World</title>
</head>
<body>
<h1 class="text-center mt-4 fw-bold">Welcome To Our <span class="text-info">Football</span> Club</h1>
<!-- Search Box -->
<div class="container">
<div class="input-group mb-5 mt-5 w-75 ms-5">
<input id="input-field" type="text" class="form-control" placeholder="serach your favorite team"
aria-label="Recipient's username" aria-describedby="button-addon2">
<button onclick="loadData()" id="input-button" class="btn btn-info" type="button">search</button>
</div>
</div>
<!-- Card Item -->
<!-- -->
<div class="container mt-5">
<div id="show-card" class="row row-cols-1 mb-3 m-3 p-2 row-cols-md-3 g-4">
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>