create my world it

This commit is contained in:
kankys 2024-09-08 17:27:07 +02:00
parent 13ab8cbe31
commit ccd6836ac5
3 changed files with 45 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<type>org.netbeans.modules.php.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/php-project/1">
<name>PhpProject</name>
<name>Blog_PhpProject</name>
</data>
</configuration>
</project>

View File

@ -0,0 +1,17 @@
/*
Created on : 8. 9. 2024, 17:19:40
Author : kankys
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
max-width: 1000px;
margin: 0 auto;
font-family: "Ubuntu", sans-serif;
}

27
world-it/index.php Normal file
View File

@ -0,0 +1,27 @@
<!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>";
?>
</body>
</html>