35 lines
1.1 KiB
Markdown
35 lines
1.1 KiB
Markdown
# IMOTCL
|
|
Проект "Интерактиваня карта города Лесного"
|
|
## Структура HTML страницы
|
|
```html
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<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">
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="css/main.css">
|
|
<title>Город Лесной</title>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper">
|
|
<header>
|
|
<div id="swup" class="transition-fade">
|
|
<a href="index.html" class="logo">Город Лесной</a>
|
|
<a href="map.html" class="logo">Вернуться на карту</a>
|
|
</div>
|
|
</header>
|
|
<main id="swup" class="transition-fade">
|
|
|
|
</main>
|
|
<div class="br"></div>
|
|
<footer id="swup" class="transition-fade">
|
|
<a href="author.html">Автор сайта - Зинченко Иван</a><br>
|
|
</footer>
|
|
<script src="js/remove.js"></script>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
```
|