You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WTL</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>WTL - uvod do JS</h1>
|
|
<h3 id="testerh3">lorem ipsum dupsum diplups</h3>
|
|
<!-- lorem -> TAB -->
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eveniet ab amet modi deleniti sit veritatis. Non magnam vel ratione animi vero odio labore ducimus. Nihil, quae! Ut, natus voluptate. Voluptates.</p>
|
|
<button onclick="zmenaBarvy()"> Zmen barvy</button>
|
|
|
|
<hr>
|
|
|
|
<input type="number" id="num1" name="num1">
|
|
<input type="number" id="num2" name="num2">
|
|
<br><br>
|
|
<button onclick='vypocitat("+")'>Sečíst</button>
|
|
<button onclick='vypocitat("-")'>Odečítat</button>
|
|
<button onclick='vypocitat("*")'>Násobit</button>
|
|
<button onclick='vypocitat("/")'>Dělit</button>
|
|
<button onclick='vypocitat("%")'>Modulo</button>
|
|
<button onclick='vypocitat("**")'>Exponent</button>
|
|
<br>
|
|
<p>Výsledek: <span id="vysledek"></span></p>
|
|
<script>
|
|
function zmenaBarvy() {
|
|
document.getElementById("testerh3").style.backgroundColor = "black";
|
|
document.getElementById("testerh3").style.color = "white";
|
|
}
|
|
</script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|