-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) · 914 Bytes
/
index.html
File metadata and controls
39 lines (32 loc) · 914 Bytes
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Основной файл index.html</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="content">
<h1 id="main-title">Заголовок с идентификатором</h1>
<p>Просто параграф без класса или идентификатора</p>
<section class="news">
<h2>Новости</h2>
<article>
<h2>Новость 1</h2>
<p>Текст новости</p>
</article>
<article>
<h2>Новость 2</h2>
<p>Текст новости</p>
<section>
<h2>Похожие новости</h2>
<article>
<h2>Похожая новость 1</h2>
<p>Текст новости</p>
</article>
</section>
</article>
</section>
</main>
</body>
</html>