-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.23 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.23 KB
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
37
38
39
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
<title>Formátování textu</title>
</head>
<body>
<div class="container">
<div class="input-section">
<textarea id="inputText" placeholder="Vložte svůj text zde"></textarea>
</div>
<div class="output-section">
<textarea id="outputText"></textarea>
</div>
</div>
<div class="controls">
<label for="fontChoice">Vyberte font:</label>
<select id="fontChoice">
<option value="Arial">Arial</option>
<option value="Verdana">Verdana</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Roboto">Roboto</option>
<option value="Open Sans">Open Sans</option>
</select>
<label for="fontSize">Velikost textu:</label>
<input type="number" id="fontSize" value="16" />
<label for="lineHeight">Řádkování:</label>
<input type="number" id="lineHeight" value="1.5" />
<div id="charCount">Počet znaků (bez mezer): 0</div>
</div>
</body>
</html>