-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtamplate.php
45 lines (43 loc) · 1.07 KB
/
tamplate.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<header></header>
<style>
*,
html,
body {
margin: 0;
padding: 0;
list-style: none;
outline: none;
text-decoration: none;
box-sizing: border-box;
}
body{
height: 100vh;}
nav{width: 85%;margin: 0 auto;padding-bottom: 50px;background: black}
main{width: 85%;margin: 0 auto;}
nav ul{display: flex;justify-content: space-around}
nav ul li a{display: block;padding: 10px;
color: white;text-transform: uppercase}
</style>
<nav>
<ul>
<li><a href="/">main</a></li>
<li><a href="/contacts">contact</a></li>
<li><a href="/cat">galary</a></li>
<li><a href="/cat/fav">favorites</a></li>
</ul>
</nav>
<main>
<?php include $file;?>
</main>
</body>
</html>