quote_randomizer/index.html
2025-09-17 11:36:48 +00:00

36 lines
No EOL
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Random Quotes Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header">
<h2>Inspiring quotes</h2>
</div>
<div class="main-content">
<div class="text-area">
<span class="quote">"겨울이 지나면 다시 봄은 오는 거야 <br>
Once the winter passes, the spring will come again"</span>
</div>
<div class="image-container">
<img class="img" src="https://upload.wikimedia.org/wikipedia/en/e/e2/BTS%2C_Love_Yourself_Answer%2C_album_cover.jpg" alt="Author's Photo">
</div>
<div class="writer"> BTS (Answer: Love Myself)</div>
<div class="button-area">
<div class="btn">
<button id="Qbtn">Another quote</button>
</div>
</div>
</div>
</div>
<script src="custom.js"></script>
</body>
</html>