-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.64 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
<html>
<head>
<title>Czytanie z pogrubieniem</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,900;1,400&display=swap" rel="stylesheet">
</head>
<body>
<script src="script.js"></script>
<div class="container">
<h1>Czytanie z pogrubieniem</h1>
<div class="controls">
<div class="option">
<label for="fontSize">Rozmiar czcionki</label>
<input type="range" id="fontSize" name="fontSize" value="20" min="15" max="35" onchange="inputChanged()">
</div>
<div class="option">
<label for="fontColor">Kolor czcionki</label>
<input id="fontColor" name="fontColor" type="color" value="#000000" onchange="inputChanged()">
</div>
<div class="option">
<label for="accentColor">Kolor akcentu</label>
<input id="accentColor" name="accentColor" type="color" value="#000000" onchange="inputChanged()">
</div>
</div>
<textarea id="input" onchange="inputChanged()">Wpisz tutaj tekst, który ma być wyświetlony z pogrubieniem</textarea>
<div class="output">
<div id="output" style="padding: 15px"></div>
</div>
</div>
</body>
</html>