-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.php
More file actions
49 lines (43 loc) · 1.46 KB
/
Copy pathcontacts.php
File metadata and controls
49 lines (43 loc) · 1.46 KB
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
46
47
48
49
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Николай Стрижаченко: Контакты</title>
<meta name="description" content="Николай Стрижаченко, Личная страничка">
<meta name="Keywords" content="Николай Стрижаченко, Личная страничка">
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1><a href="." title="Личная страница" alt="Личная страница">Личная страница</a></h1>
<h2><a href="." title="Личная страница" alt="Личная страница">Николая Стрижаченко</a></h2>
<nav>
</nav>
</header>
<content>
<main>
<aside>
<ul>
<li><a href=".">Главная</a></li>
<li><a href="about.php">Обо мне</a></li>
<li><a href="guestbook.php">Гостевая книга</a></li>
<li><a href="interests.php">Мои интересы</a></li>
<li><a href="information.php">Полезное</a></li>
<p>Почта</p>
</ul>
</aside>
<h3>Контакты</h3>
<?php
include 'inc.php';
echo MyReadBDSQL(5);
?>
</main>
</content>
<footer>
<a href="edit.php">Редактор</a>
<h6>© 2022 Saint-Petersburg, Alexey Subbotin<br />
alesu1543@gmail.com</h6>
</footer>
</body>
</html>