-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest1.html
More file actions
39 lines (39 loc) · 1.56 KB
/
test1.html
File metadata and controls
39 lines (39 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Title of the Website -->
<title>Anime API</title>
<!-- Using Bootstrap framework for css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<!-- Fontawesome to get icons -->
<script src="https://kit.fontawesome.com/d676f25411.js" crossorigin="anonymous"></script>
<style>
table {
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body style="background-color: rgb(190, 21, 21);">
<div class="text-center my-5">
<h1 style="color:white">
<legend>Get your Anime Details</legend>
</h1>
<!-- form -->
<form class="form-group text-center mt-4">
<fieldset class="d-flex justify-content-center">
<input class="form-control w-25" autocomplete="off" placeholder="Enter Anime Name" type="text" name="animeName"
id="animeName">
<button class="btn btn-dark" type="button" id="getDetail"><i class="fas fa-search"></i></button>
</fieldset>
</form>
</div>
<div class="container text-center px-5">
<div class="d-flex justify-content-center" id="output">
<table id="table" style="border: 1px solid grey"></table>
</div>
</div>
<script src="index.js"></script>
</body>
</html>