configurace projektu

This commit is contained in:
kankys 2024-11-14 12:19:06 +01:00
commit fb7ec02131
5 changed files with 33 additions and 0 deletions

14
index.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="cz">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>JavaScript</title>
</head>
<body>
<h1>Toto je stránka o JavaScriptu</h1>
<script src="script.js"></script>
</body>
</html>

1
pozdrav.js Normal file
View File

@ -0,0 +1 @@
console.log("Jmenuji se Lukáš")

1
script.js Normal file
View File

@ -0,0 +1 @@
console.log("Učíme se javascript")

3
style.css Normal file
View File

@ -0,0 +1,3 @@
h1 {
color: red;
}

14
template.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="cz">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>JavaScript</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>