my/html/l1.html
2026-05-16 16:26:56 +03:00

34 lines
No EOL
748 B
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>HTML</title>
<style>
.image {
width: 1200px;
height: auto;
}
</style>
</head>
<body>
<header>
<h1>Site</h1>
</header>
<nav>
<a href="l2.html">Переход</a>
<a href="l3.html">Переход 2</a>
<a href="#about">Обо мне</a>
</nav>
<main>
<img src="image.jpeg" alt="пушок" class="image">
<p>Сайт</p>
</main>
<footer>
<section id="about">
<h2>Я да</h2>
<p>ДА да</p>
</section>
</footer>
</body>
</html>