-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.21 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
<html>
<head>
<title>Ani Quot-chan</title>
<!-- link to tailwind css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css"
integrity="sha512-wnea99uKIC3TJF7v4eKk4Y+lMz2Mklv18+r4na2Gn1abDRPPOeef95xTzdwGD9e6zXJBteMIhZ1+68QC5byJZw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body class="bg-gray-900">
<div class="container mx-auto flex flex-col items-center justify-center h-screen">
<!-- button to fetch a random quote -->
<button id="fetch-quote" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Get a
random anime quote</button>
<!-- div to display the quote -->
<div id="quote-display" class="bg-gray-100 mt-10 p-5 border-4 border-black rounded hidden">
<!-- paragraph to show the quote -->
<p id="quote" class="text-xl italic"></p>
<!-- paragraph to show the character name -->
<p id="character" class="text-lg font-bold mt-5"></p>
<!-- paragraph to show the anime name -->
<p id="anime" class="text-lg"></p>
</div>
</div>
<!-- script tag to link to js file -->
<script type="application/javascript" src="./app.js"></script>
</body>
</html>