26 lines
629 B
HTML
26 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="./styles.css">
|
|
<title> Moon's Project </title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>Today's quote</h1>
|
|
<div class="quote-container">
|
|
<p id="quote"></p>
|
|
<p id="author"></p>
|
|
</div>
|
|
<button onclick="getQuote()">Generate </button>
|
|
</div>
|
|
|
|
<canvas id="Matrix"> </canvas>
|
|
<script src="./matrix.js"> </script>
|
|
<script src="./quote.js"> </script>
|
|
|
|
</body>
|
|
</html>
|