-
Notifications
You must be signed in to change notification settings - Fork 0
/
hlavicka.php
25 lines (24 loc) · 1.12 KB
/
hlavicka.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php require_once "sdilene.php"; ?>
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><?php echo $nazevBlogu; ?> blog</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
.container .jumbotron h2 a {color: #e5007d}
.container .jumbotron h2 a:hover {color: #273582; text-decoration:none;}
.footer { font-size: 0.7em; }
.form-signin {width: 100%;max-width: 330px;padding: 15px;margin: 0 auto;}
.form-signin .form-control {position: relative;box-sizing: border-box;height: auto;padding: 10px;font-size: 16px;}
.form-signin .form-control:focus {z-index: 2;}
</style>
</head>
<body>
<div class="container">
<!-- hlavička -->
<div class="header navbar navbar-light bg-light rounded">
<h1><?php echo $nazevBlogu . " blog"; ?></h1>
</div>