This commit is contained in:
kankys
2024-09-10 20:06:15 +02:00
parent 3e98a8e1a7
commit c225b329a2
18 changed files with 187 additions and 111 deletions

38
www/index.php Normal file
View File

@ -0,0 +1,38 @@
<?php
echo "Lukáš";
echo strlen("Lukáš");
?>
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Naše první stránky v PHP</title>
</head>
<body>
<?php include "./assets/componets/header.php" ?>
<main>
<section>
<h1>Historie firmy</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quod ad, voluptatem officia alias illo ipsum libero
iste sed expedita, nemo rem reprehenderit doloremque quo asperiores soluta! Cupiditate fuga vel in.</p>
</section>
<h1>Odkaz na další stránky webu</h1>
<a href="sluzby.php">Naše služby</a>
<a href="cenik.php">Ceník</a>
<a href="kontakt.php">Kontaktujte nás</a>
<img src="img/obr1.webp" alt="">
</main>
<?php include "./assets/componets/footer.php" ?>
</body>
</html>