-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
34 lines (30 loc) · 1.14 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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Můj první projekt v JavaScriptu</title>
<!-- Odkazujeme na js -->
<script src="/js/script.js"></script>
</head>
<body>
<header>
</header>
<main>
<section>
<!-- Pomocí id zajišťujeme komunikaci mezi html elementem a js. -->
<label for="input">Zadej text</label>
<input type="text" id="input">
<!-- onclick musí mít název funkce, který odpovídá funkci v js, který je připojený k html. Pozor je to key sensitivity, takže rozlišuje malá a velká písmena -->
<button onclick="Add()">Přidej</button> <!-- oncliock - Událost (event), která spouští funkci podle toho, pokud se na element klikne -->
</section>
<section>
<!-- Zde odkazujeme na <p> pomocá id, zde se budou vypisovat text, který vložíme pomocí js přes input -->
<p id="output">
</p>
</section>
</main>
<footer>
</footer>
</body>
</html>