-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path36. HTML Section.html
More file actions
39 lines (34 loc) · 1.15 KB
/
36. HTML Section.html
File metadata and controls
39 lines (34 loc) · 1.15 KB
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
<!-- Создайте шапку сайта. Она состоит из 2-х элементов:
Логотип
Секция навигации. Внутри неё маркированный список из двух элементов
Добавьте секцию <main>. Внутри создайте две секции с заголовками второго уровня. -->
<header>
<img src="/logo.png" alt="Code Basics">
<nav>
<ul>
<li><a href="/languages/html">HTML Course</a></li>
<li><a href="/languages/css">CSS Course</a></li>
</ul>
</nav>
</header>
<main>
<h1>Free hands-on programming courses for those starting from scratch</h1>
<p>From the creators of Hexlet</p>
<section>
<h2>Languages available for learning</h2>
<ul>
<li>Javascript</li>
<li>PHP</li>
<li>Java</li>
<li>Python</li>
<li>Racket</li>
</ul>
</section>
<section>
<h2>Frontend courses</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</section>
</main>