-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.37 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quotable Translator</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<div class="container">
<h1>Quote Generator and Translator</h1>
<div class="controls">
<select id="language-select">
<option value="en">English</option>
<option value="es">Spanish</option>
<option value="it">Italian</option>
<option value="fr">French</option>
<option value="de">German</option>
<option value="pt">Portuguese</option>
<option value="ru">Russian</option>
<option value="ko">Korean</option>
<option value="sv">Swedish</option>
<!-- You can add more languages here -->
</select>
<button id="generate-quote">Generate Quote</button>
<button id="translate-quote">Translate Quote</button>
</div>
<div class="quote-container">
<p id="quote-text">Click the button to generate a quote.</p>
<p id="quote-author"></p>
<button id="copy-quote" style="display: none;">Copy Quote</button>
</div>
</div>
<script src="scripts/script.js"></script>
</body>
</html>