create my world it
This commit is contained in:
parent
13ab8cbe31
commit
ccd6836ac5
@ -3,7 +3,7 @@
|
|||||||
<type>org.netbeans.modules.php.project</type>
|
<type>org.netbeans.modules.php.project</type>
|
||||||
<configuration>
|
<configuration>
|
||||||
<data xmlns="http://www.netbeans.org/ns/php-project/1">
|
<data xmlns="http://www.netbeans.org/ns/php-project/1">
|
||||||
<name>PhpProject</name>
|
<name>Blog_PhpProject</name>
|
||||||
</data>
|
</data>
|
||||||
</configuration>
|
</configuration>
|
||||||
</project>
|
</project>
|
||||||
|
17
world-it/assets/css/style.css
Normal file
17
world-it/assets/css/style.css
Normal 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
27
world-it/index.php
Normal 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>
|
Loading…
Reference in New Issue
Block a user