-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (69 loc) · 2.89 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
75
76
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Recepty</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Raleway:600,800&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main class="obsah">
<!-- hlavni recept -->
<article class="recept recept--hlavni recept--salat">
<h2 class="recept-nadpis">
Salát s vlašskými ořechy
</h2>
<p class="recept-vrch">
<strong class="recept-rubrika">Saláty</strong>
<span class="recept-komentare">5 komentářů</span>
</p>
</article>
<ul class="recepty">
<!-- maly recept 2 -->
<li class="recept recept--chlebicek">
<h2 class="recept-nadpis">
Chlebíček s avokádem
</h2>
<p class="recept-vrch">
<strong class="recept-rubrika">Svačina</strong>
<span class="recept-komentare">16 komentářů</span>
</p>
</li>
<!-- maly recept 3 -->
<li class="recept recept--tacos">
<h2 class="recept-nadpis">
Avokádové tacos
</h2>
<p class="recept-vrch">
<strong class="recept-rubrika">Mexická</strong>
<span class="recept-komentare">7 komentářů</span>
</p>
</li>
<!-- maly recept 4 -->
<li class="recept recept--cizrna">
<h2 class="recept-nadpis">
Pita chléb s cizrnou
</h2>
<p class="recept-vrch">
<strong class="recept-rubrika">Luštěniny</strong>
<span class="recept-komentare">23 komentářů</span>
</p>
</li>
<!-- maly recept 5 -->
<li class="recept recept--burger">
<h2 class="recept-nadpis">
Sojový burger
</h2>
<p class="recept-vrch">
<strong class="recept-rubrika">Burgery</strong>
<span class="recept-komentare">19 komentářů</span>
</p>
</li>
</ul>
</main>
<div class="paticka">
<p>Foto z <a href="https://unsplash.com">unsplash.com</a> (licence <a href="https://unsplash.com/license">do-whatever-you-want</a>)</p>
</div>
</body>
</html>