-
Notifications
You must be signed in to change notification settings - Fork 3
/
quotes.html
129 lines (106 loc) · 3.6 KB
/
quotes.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<title>AnimeBookZ</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
.container {
margin-top: 20px;
}
.quote-card {
margin-bottom: 20px;
padding: 20px;
border-radius: 5px;
background-color: #f8f9fa;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.quote-card p {
font-size: 18px;
margin-bottom: 5px;
}
.quote-card small {
font-size: 14px;
}
.logo {
width: 105px;
height: 105px;
margin-right: 10px;
margin-bottom: -30px;
}
</style>
<script>
function showQuotes() {
fetch("https://animechan.xyz/api/quotes")
.then((response) => response.json())
.then((quotes) => displayQuotes(quotes));
}
function displayQuotes(quotes) {
const quotesContainer = document.getElementById("quotes-container");
// Clear previous quotes
quotesContainer.innerHTML = "";
// Display each quote
quotes.forEach((quote) => {
const quoteCard = document.createElement("div");
quoteCard.classList.add("quote-card");
const quoteText = document.createElement("p");
quoteText.textContent = `"${quote.quote}"`;
const quoteCharacter = document.createElement("p");
quoteCharacter.innerHTML = `<strong>Character:</strong> ${quote.character}`;
const quoteAnime = document.createElement("p");
quoteAnime.innerHTML = `<strong>Anime:</strong> ${quote.anime}`;
quoteCard.appendChild(quoteText);
quoteCard.appendChild(quoteCharacter);
quoteCard.appendChild(quoteAnime);
quotesContainer.appendChild(quoteCard);
});
}
</script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">
<img src="logo.png" alt="Logo" class="logo">
</a>
<a button class="nav-link ml-auto" href="search.html">
<img src="search-icon.png" alt="Search" width="30" height="30">
<b>search</b>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<li class="nav-item">
<a class="nav-link" href=""></a>
</li>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html">home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="manga.html">Manga</a>
</li>
<li class="nav-item">
<a class="nav-link" href="quotes.html">quotes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">about</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">contact</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<button class="btn btn-primary" onclick="showQuotes()">show Quotes</button>
<div id="quotes-container"></div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>