36 lines
762 B
PHP
36 lines
762 B
PHP
<?php
|
|
|
|
session_start();
|
|
|
|
setlocale(LC_TIME, "ru_RU.utf8");
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Сайт</title>
|
|
<link rel="shortcut icon" type="image/jpg" href="img/logo.png"/>
|
|
</head>
|
|
|
|
<style>
|
|
html{
|
|
font-family: 'Roboto', sans-serif;
|
|
color: #444;
|
|
text-shadow: 0.5px 0.5px 0.5px #fff;
|
|
font-size: 62.5%;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
|
|
font-size: 1.6rem;
|
|
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</html>
|