33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<!--
 | 
						|
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 | 
						|
Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/EmptyPHPWebPage.php to edit this template
 | 
						|
-->
 | 
						|
<html lang="cs">
 | 
						|
    <head>
 | 
						|
        <link rel="stylesheet" href="./assets/css/style.css" />
 | 
						|
        <meta charset="UTF-8">
 | 
						|
         <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
        <meta name="description" content="Můj svět IT" />
 | 
						|
        <meta name="keywords" content="IT, Opensource, Linux, Web developer, PHP" />
 | 
						|
        <meta name="author" content="Lukáš Kaňka" />
 | 
						|
        <!--ubuntu fonts-->
 | 
						|
        <style>
 | 
						|
            @import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
 | 
						|
        </style>
 | 
						|
        <title>My IT World</title>
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <?php
 | 
						|
echo "<h1>Můj svět v IT</h1>";
 | 
						|
  echo "<br>";
 | 
						|
echo "<h3>Návody, články, zajímavosti ze světa Linuxu, tvorby webu, opensource a dalších témat:</h3>";
 | 
						|
?>
 | 
						|
<div></div>
 | 
						|
  <div class="test"></div>
 | 
						|
  <?php
 | 
						|
  echo "test"
 | 
						|
    ?>
 | 
						|
    </body>
 | 
						|
</html>
 |