Files
files_mephi/02 РВоИС/front/lab1/index.html
T
2026-04-20 09:51:00 +03:00

78 lines
2.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Мурманск - главная</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Мурманск</h1>
<p>Красивейший город за Полярным кругом</p>
</div>
</header>
<main class="container">
<section>
<h2>Навигация</h2>
<nav aria-label="Навигация по страницам">
<!-- метка для скринридеров -->
<ul class="nav-list">
<!-- маркированный список -->
<li><a href="index.html">Главная</a></li>
<li><a href="pages/page1.html">История</a></li>
<li><a href="pages/page2.html">Климат</a></li>
<li><a href="pages/page3.html">Население</a></li>
</ul>
</nav>
</section>
<section>
<h2>Кратко о городе</h2>
<p>Мурманск основан в 1916 году. Это крупнейший город мира за Полярным кругом и важный незамерзающий порт
России.</p>
<img class="city-image" src="img/murmansk.png" alt="Мурманск, порт и северный город">
<img class="city-image" src="img/murmansk2.png" alt="Мурманск, монумент Защитникам Советского Заполярья">
</section>
<section>
<h2>Основные сведения</h2>
<table>
<thead>
<!-- заголовок таблицы -->
<tr>
<th>Параметр</th>
<th>Значение</th>
</tr>
</thead>
<tbody>
<tr>
<td>Год основания</td>
<td>1916</td>
</tr>
<tr>
<td>Регион</td>
<td>Мурманская область</td>
</tr>
<tr>
<td>Население (2025)</td>
<td>264 339 человек</td>
</tr>
</tbody>
</table>
</section>
</main>
<footer>
<div class="container">
<p>Антипенко Д.А. С22-712</p>
</div>
</footer>
</body>
</html>