-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (121 loc) · 5.8 KB
/
index.html
File metadata and controls
121 lines (121 loc) · 5.8 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WorkSpace</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/choices.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
<script src="js/choices.min.js" defer></script>
<script src="js/scripts.js" defer></script>
</head>
<body>
<header class="header">
<div class="container header__container">
<img src="img/logo.svg" alt="Логотип WorkSpace" class="header__logo">
<a href="#vacancies" class="header__link btn-hover">Посмотреть вакансии</a>
</div>
</header>
<main class="main">
<section class="hero">
<div class="container hero__container">
<h1 class="hero__title">Найди работу
<span class="blue-text">своей мечты</span>
</h1>
</div>
</section>
<div class="vacancies" id="vacancies">
<div class="container vacancies__container">
<button class="vacancies__filter-btn blue-text">Фильтр</button>
<section class="vacancies__filter filter">
<h2 class="filter__title">Фильтр</h2>
<form class="filter__form">
<fieldset class="filter__fieldset">
<legend class="filter__legend">Город</legend>
<select class="filter__select" name="city" id="city">
<option value="">Выбрать город</option>
</select>
</fieldset>
<fieldset class="filter__fieldset">
<legend class="filter__legend">Заработная плата</legend>
<div class="filter__range">
<input type="number" class="filter__input" name="pay-from" placeholder="от">
<input type="number" class="filter__input" name="pay-to" placeholder="до">
</div>
</fieldset>
<div class="filter__checkboxes">
<fieldset class="filter__fieldset">
<legend class="filter__legend">Формат</legend>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="format" value="Офис">Офис
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="format" value="Удаленный">Удаленный
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="format" value="Гибкий">Гибкий
</label>
</fieldset>
<fieldset class="filter__fieldset">
<legend class="filter__legend">Опыт работы</legend>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="experience" value="Не важно">Не важно
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="experience" value="Без опыта">Без опыта
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="experience" value="От 1 года до 3-х лет">От 1 года до 3-х лет
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="experience" value="От 3-х лет">От 3-х лет
</label>
</fieldset>
<fieldset class="filter__fieldset">
<legend class="filter__legend">Занятость</legend>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="type" value="Полная">Полная
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="type" value="Частичная">Частичная
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="type" value="Стажировка">Стажировка
</label>
<label class="filter__label checkbox">
<input class="checkbox__input" type="checkbox" name="type" value="Проектная работа">Проектная работа
</label>
</fieldset>
</div>
<div class="filter__buttons">
<button class="filter__button btn-hover" type="submit">Применить</button>
<button class="filter__reset" type="reset">Очистить</button>
</div>
</form>
</section>
<section class="vacancies__cards cards">
<h2 class="cards__title visually-hidden">Список вакансий</h2>
<ul class="cards__list">
</ul>
</section>
</div>
</div>
</main>
<footer class="footer">
<div class="container footer__container">
<img src="img/logo-footer.svg" alt="Логотип WorkSpace" class="footer__logo">
<p class="footer__copyright">© Work Space, 2023</p>
<ul class="footer__contacts">
<li class="footer__contact">Designer:
<a href="https://t.me/Mrshmallowww" class="footer__link">Anastasia Ilina</a>
</li>
<li class="footer__contact">Developer: :
<a href="https://t.me/nesma02" class="footer__link">Eduard Nesmashnyi</a>
</li>
</ul>
</div>
</footer>
</body>
</html>