36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
|
|
<!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>
|