-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphics.html
152 lines (143 loc) · 4.34 KB
/
graphics.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="graphics_style.css" />
<link
rel="shortcut icon"
href="graphics/svg/logo_ztracene_obce_fin.svg"
type="image/x-icon"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;900&family=Six+Caps&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300;900&family=Old+Standard+TT:wght@700&display=swap"
rel="stylesheet"
/>
<title>Kvadrberk</title>
</head>
<body>
<div class="grid_g_all">
<!-- Navbar -->
<div class="navbar_g">
<div class="container flex">
<div class="logo">
<a href="index.html"
><img
src="graphics/svg/logo_ztracene_obce_fin.svg"
width="80"
height="80"
alt=""
/></a>
</div>
<nav>
<ul>
<li><a href="index.html">ÚVOD</a></li>
<li><a href="graphics.html">KVÁDRBERSKÝ VRCH</a></li>
<li><a href="map_page.html">MAPA</a></li>
</ul>
</nav>
</div>
</div>
<div class="grid_g">
<img
src="graphics/optimised/kberg1.jpg"
alt="old1"
class="photo1"
width="600"
height="395"
/>
<div class="text_1 text_card">
<ul class="flex_col">
<li>
<p>
Na dobové pohlednici je možné spatřit budovu hostince na
<a href="https://en.mapy.cz/s/hecotofulo">Kvádrberském vrchu</a>
nad Děčínem.
</p>
</li>
<li>
<p>
V levé části pohlednice je možné spatřit Děčínský sněžník s
rozhlednou.
</p>
</li>
<li>
<p>
Z dobové pohlednice se nyní dochoval pouze obelisk na vyhlídce.
</p>
</li>
</ul>
</div>
<img
src="graphics/optimised/kberg2.jpg"
alt="old2"
class="photo2"
width="522"
height="817"
/>
<div class="text_2 text_card">
<ul class="flex_col">
<li>
<p>
Budova hostince je zde vyobrazena z severozápadní srany, tedy
při výstupu z kaňonu Labe.
</p>
</li>
<li>
<p>
Na obrázku je patrná i přístupová cesta vedoucí skrze skály přes
různé mosty a lávky.
</p>
</li>
<li>
<p>
Narozdíl od budovy se přístupová cesta dochovala dodnes. Nyní
jsou lávky ze železa namísto dřeva.
</p>
</li>
</ul>
</div>
<img
src="graphics/optimised/kberg3.jpg"
alt="old3"
class="photo3"
width="1037"
height="730"
/>
<div class="text_3 text_card">
<ul class="flex_col">
<li>
<p>
Na obrázku je vidět aktuální pohled na vrcholek Kvádrberského
kopce.
</p>
</li>
<li>
<p>Je možné vidět poměrně zachovalý obelisk s vyhlídkou.</p>
</li>
<li>
<p>
Bývalý hostinec by na fotce byl v pravé části místo lesního
porostu. Před vyhlídkou pak chybí rozsáhlé posezení.
</p>
</li>
</ul>
</div>
</div>
<!-- footer -->
<footer class="footer_all_g">
<h2>Jan Horák</h2>
</footer>
</div>
</body>
</html>