-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.41 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Моя первая веб-страница</title>
</head>
<body>
<header>
<!-- текстовое лого -->
<span style="font-size: large; font-weight: bold;">Mea prima pagina</span>
<!-- навбар -->
<nav style="display: inline;">
<a href="#">Главная</a>
<a href="./pages/about.html">О нас</a>
<a href="./pages/contacts.html">Контакты</a>
</nav>
</header>
<hr>
<main>
<!-- основной контент -->
<article>
<h1>Lorem, ipsum dolor.</h1>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. A dolorum delectus veritatis, amet omnis voluptate nulla,<br>
cumque nemo sapiente est nisi suscipit magnam quae, incidunt deserunt id cum laudantium animi!
</p>
<!-- дополнительное изображение -->
<section>
<h2>Дополнительно</h2>
<img src="images/img1.svg" width="800" alt="Как часто вы думаете о римской империи?">
</section>
</article>
</main>
<hr>
<footer>
<!--<span>© Skillfactory</span>-->
<span>© cookieru</span>
</footer>
</body>
</html>