-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (74 loc) · 3.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://code.s3.yandex.net/web-code/normalize.css">
<link rel="stylesheet" href="style.css">
<title>Портфолио</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="портфолио Стас Басов на Яндекс Практикуме">
<meta name="keywords" content="html, css, javascript">
<meta name="author" content="Стас Басов">
</head>
<body class="page">
<header class="header centered-block">
<h1 class="centered-block"><a href="#" class="header__link" lang="en">Alexey Filimonov</a></h1>
</header>
<nav class="menu centered-block page__menu">
<a href="#beginner" class="menu__link menu__link_active">Первые шаги в HTML и CSS</a>
<a href="#frameworks" class="menu__link">Библиотеки JavaScript</a>
<a href="#practice" class="menu__link">Практика HTML, CSS и JavaScript</a>
</nav>
<main class="content centered-block">
<section id="beginner">
<h2 class="content__title">Первые шаги в HTML и CSS</h2>
<ul class="flex-row list flex-row_space_bottom">
<li class="project project_name_music-album project_width_l project_height_l">
<a href="#" class="project__overlay">Обложка музыкального альбома</a>
</li>
<li class="project project_name_design-principles project_width_l project_height_l">
<a href="#" class="project__overlay">Посадочная страница</a>
</li>
</ul>
</section>
<section id="frameworks">
<h2 class="content__title">Библиотеки JavaScript</h2>
<div class="flex-row flex-row_reversed flex-row_space_bottom">
<div class="flex-column flex-column_reversed">
<div class="project project_width_l project_height_s">
<video class="project__video" src="https://code.s3.yandex.net/web-code/like.mp4" autoplay muted loop></video>
</div>
<ul class="flex-row list">
<li class="project project_name_slider project_width_m project_height_m">
<a href="#" class="project__overlay">Слайдер</a>
</li>
<li class="project project_name_reactive project_width_m project_height_m">
<a href="#" class="project__overlay">React, Vue, Angular</a>
</li>
</ul>
</div>
<div class="project project_width_l project_height_xl">
<video class="project__video" src="https://code.s3.yandex.net/web-code/procrastinate.mov" autoplay muted loop></video>
</div>
</div>
</section>
<section id="practice">
<h2 class="content__title">Практика HTML, CSS и JavaScript</h2>
<ul class="flex-row list">
<li class="project project_name_how-to-study project_width_m project_height_m">
<a href="#" class="project__overlay">CSS-анимации</a>
</li>
<li class="project project_name_across-russia project_width_l project_height_m">
<a href="#" class="project__overlay">Адаптивная вёрстка</a>
</li>
<li class="project project_name_mesto project_width_m project_height_m">
<a href="#" class="project__overlay">Приложение на JavaScript</a>
</li>
</ul>
</section>
</main>
<footer class="footer centered-block">
<div class="footer__logo"></div>
</footer>
</body>
</html>