-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Педалируй</title>
<!--[if IE]>
<script>
document.createElement('header');
document.createElement('nav');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('footer');
</script>
<![endif]-->
</head>
<body>
<header>
<img id="logo" src="img/logo.png"/>
</header>
<nav id='menu-navigation'>
<ul>
<li><a href="#delivery">Доставка</a></li>
<li><a href="#contacts">Контакты</a></li>
<li><a href="#orders">Корзина</a></li>
</ul>
</nav>
<section id='catalog'>
<h3>Каталог</h3>
<ul>
<li><a href="/catalog/0">Замки</a></li>
<li><a href="/catalog/1">Держатели</a></li>
<li><a href="/catalog/2">Обслуживание</a></li>
<li><a href="/catalog/3">Респираторы</a></li>
<li><a href="/catalog/4">Сумки</a></li>
<li><a href="/catalog/5">Фонари</a></li>
</ul>
</section>
<footer></footer>
</body>
</html>