-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.06 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.06 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>devmentor.pl - HTML & CSS, menu dropdown</title>
<link rel="stylesheet" href="./styles/reset.css">
<link rel="stylesheet" href="./styles/base.css">
</head>
<body>
<ul class="nav">
<li class="nav__item nav__item--no-space">
<a class="nav__link" href="#">start</a>
</li>
<li class="nav__item">
<a class="nav__link" href="#">portfolio</a>
<ul class="nav__dropdown dropdown">
<li class="dropdown__item">
<a class="dropdown__link" href="#">www</a>
</li>
<li class="dropdown__item">
<a class="dropdown__link" href="#">app</a>
</li>
</ul>
</li>
<li class="nav__item">
<a class="nav__link" href="#">kontakt</a>
</li>
</ul>
</body>
</html>