generated from Digitalni-akademie-Web-Jaro-2020-Praha/Ukol-boty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (61 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Dámské běžecké boty</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Rubik"
rel="stylesheet"
/>
</head>
<body>
<div class="zbozi">
<div class="vizual">
<div class="logo">
<img src="images/nike.svg" alt="logo Nike" width="65" height="24" />
</div>
<p class="slogan">
Zrychli tempo,<br />
soustřeď se na rychlost!
</p>
<div class="bota">
<img
src="images/bota.png"
alt="fotografie Nike Air Zoom Pegasus 33"
width="415"
height="295"
/>
</div>
<div class="cenovka">
<div class="cena">2450 Kč</div>
<div class="zaruka">Prodloužená záruka 3 roky</div>
</div>
</div>
<!-- konec .vizual -->
<div class="detaily">
<h1 class="nazev">Nike Air Zoom Pegasus 33</h1>
<p class="produkt">Dámská běžecká bota</p>
<p class="popis">
Nike Air Zoom Pegasus 33 dokonale padne, dodá pocit rychlosti a má
pružné tlumení, které ti umožní zrychlit tempo a soustředit se na
rychlost.
</p>
<h2 class="parametr">Velikost</h2>
<ul class="velikosti">
<li>35</li>
<li>36</li>
<li>37</li>
<li class="vybrana">38</li>
<li>39</li>
<li>40</li>
</ul>
<div class="akce">
<a class="tlacitko" href="#">Do košíku</a>
</div>
</div>
<!-- konec .detaily -->
</div>
<!-- konec .zbozi -->
</body>
</html>