34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title> Quote Generator </title>
|
|
<link rel="icon" href="../images/lifeadventurer_rounded_logo.png">
|
|
<!-- bootstrap -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
<!-- box icons -->
|
|
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
|
<link rel="stylesheet" href="./css/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container" id="imageContainer">
|
|
<h1>Today's quote</h1>
|
|
<div class="quote-container">
|
|
<p id="quote"></p>
|
|
<p id="author"></p>
|
|
</div>
|
|
<div class="row">
|
|
<button class="col-4 offset-4" onclick="getQuote()">Generate </button>
|
|
<div class="col-2 offset-2 bx bx-moon" id="dark-mode-icon"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<canvas id="Matrix"></canvas>
|
|
<script src="./js/scripts.js"></script>
|
|
<script src="./js/matrix.js"></script>
|
|
<script src="./js/quote.js"></script>
|
|
</body>
|
|
</html>
|