personal-website/docs/common/header.php

60 lines
1.3 KiB
PHP
Raw Normal View History

2023-12-21 13:11:22 +01:00
<!DOCTYPE html>
2023-12-21 17:20:36 +01:00
<link rel="stylesheet" href="http://assets.zdenekborovec-dev.cz/common/styles.css?1703173954">
2023-12-21 13:11:22 +01:00
<style>
#header {
border-bottom: double;
}
#header h1{
padding-left: 1em;
padding-right: 1em;
}
#header ul {
background-color: #202020;
2023-12-21 17:20:36 +01:00
background-image: url("http://assets.zdenekborovec-dev.cz/common/planks_dark_tile.png");
2023-12-21 13:11:22 +01:00
background-repeat: repeat;
padding: 0;
margin: 0;
text-align: center;
display: flex;
list-style-type: none;
}
#header ul li {
float: left;
position: relative;
flex-grow: 1;
border-style: solid;
border-width: thin;
border-color: black;
}
#header ul li a {
color: white;
text-decoration: none;
font-family: sans-serif;
font-weight: bold;
display: block;
}
</style>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
2024-01-03 13:20:25 +01:00
<link rel="icon" href="http://www.zdenekborovec-dev.cz/favicon.ico">
2023-12-21 13:11:22 +01:00
<title><?= isset($PageTitle) ? $PageTitle : "Zdenek Home Page"?></title>
</head>
<body>
<main>
<div id="header">
<h1> Zdenek Borovec Home Page </h1>
<ul>
2023-12-21 17:20:36 +01:00
<li><a href="http://www.zdenekborovec-dev.cz">About</a></li>
<li><a href="http://www.zdenekborovec-dev.cz/blog">Blog</a></li>
2023-12-21 13:11:22 +01:00
<li>Gallery</li>
2024-01-03 12:10:52 +01:00
<li><a href="http://www.zdenekborovec-dev.cz/random">Random Tools</a></li>
2023-12-21 13:11:22 +01:00
</ul>
</div>