Remove problems from code inspection.
This commit is contained in:
@@ -42,8 +42,8 @@ form br {
|
||||
}
|
||||
|
||||
#header ul {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -68,7 +68,7 @@ form br {
|
||||
position: relative;
|
||||
width: 160px;
|
||||
height: 600px;
|
||||
left: 0px;
|
||||
left: 0;
|
||||
float: left;
|
||||
background-color: #ccc;
|
||||
}
|
||||
@@ -76,8 +76,8 @@ form br {
|
||||
#links ul {
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
margin: 20px 0px;
|
||||
padding: 0px;
|
||||
margin: 20px 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,4 +2,3 @@
|
||||
include "funktionen.php";
|
||||
include "variablen.php";
|
||||
include "konstanten.php";
|
||||
?>
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
// Die Datei inc/funktionen.php
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
// konstanten.php
|
||||
define('MYSQL_HOST', 'localhost');
|
||||
define('MYSQL_USER', 'web104');
|
||||
define('MYSQL_PASS', 'lmaa,dw.');
|
||||
define('MYSQL_DATABASE', 'usr_web104_1');
|
||||
?>
|
||||
const MYSQL_HOST = 'localhost';
|
||||
const MYSQL_USER = 'web104';
|
||||
const MYSQL_PASS = 'lmaa,dw.';
|
||||
const MYSQL_DATABASE = 'usr_web104_1';
|
||||
|
||||
@@ -16,4 +16,3 @@ $links['fotos'] = "links/fotos.php";
|
||||
$links['kal'] = "links/kal.php";
|
||||
$links['preise'] = "links/preise.php";
|
||||
|
||||
?>
|
||||
@@ -31,4 +31,3 @@ echo " </div>\n";
|
||||
echo " </div>\n";
|
||||
echo " </body>\n";
|
||||
echo "</html>\n";
|
||||
?>
|
||||
@@ -4,4 +4,3 @@ if (isset($_GET['section']) and isset($dateien[$_GET['section']])) {
|
||||
} else {
|
||||
include $dateien['will'];
|
||||
}
|
||||
?>
|
||||
@@ -17,4 +17,3 @@ if ($result2) {
|
||||
echo '<a href="index.php?section=angebote">Zur<75>ck zur <20>bersicht</a>';
|
||||
|
||||
|
||||
?>
|
||||
@@ -18,6 +18,8 @@ if ('will' == $_GET['t']) {
|
||||
} elseif ('amelie' == $_GET['t']) {
|
||||
$path = "../img/amelie/";
|
||||
echo "<h2>Fotos auf der Seite Wohnung Amelie</h2>\n";
|
||||
} else {
|
||||
die();
|
||||
}
|
||||
|
||||
$ref = "index.php?section=fotos&t=" . $_GET['t'];
|
||||
@@ -31,13 +33,12 @@ if (!isset($_GET['action'])) {
|
||||
$link = $ref . "&action=del&pic=" . $i;
|
||||
echo "<a href=\"$link\">";
|
||||
echo "<img style=\"margin: 20px 20px 20px 20px; border: 2px solid red;\" src=\"$pic\" width=\"100px\" height=\"100px\"/>";
|
||||
echo "</a>\n";
|
||||
} else {
|
||||
$link = $ref . "&action=add&pic=" . $i;
|
||||
echo "<a href=\"$link\">";
|
||||
echo "<img style=\"margin: 20px 20px 20px 20px; border: 2px solid red;\" src=\"../img/no.jpg\" />";
|
||||
echo "</a>\n";
|
||||
}
|
||||
echo "</a>\n";
|
||||
}
|
||||
} else {
|
||||
if ('del' == $_GET['action']) {
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
<p>In diesem Bereich können die Fotos für die einzelnen Bildergalerien hochgeladen werden.</p>
|
||||
<p>Dafür muss eine Sektion im linken Bereich ausgewählt werden.</p>
|
||||
<p>In diesem Bereich können die Fotos für die einzelnen Bildergalerien hochgeladen werden.</p>
|
||||
<p>Dafür muss eine Sektion im linken Bereich ausgewählt werden.</p>
|
||||
@@ -8,8 +8,8 @@ if (!isset($_GET['action'])) {
|
||||
|
||||
for ($i = 0; $i < 2; $i++) {
|
||||
$pic = $path . $i . ".jpg";
|
||||
$link = $ref . "&action=add&pic=" . $i;
|
||||
if (file_exists($pic)) {
|
||||
$link = $ref . "&action=add&pic=" . $i;
|
||||
if (0 == $i) {
|
||||
echo "<p>Wohnung Gaby:</p>\n";
|
||||
} else {
|
||||
@@ -20,7 +20,6 @@ if (!isset($_GET['action'])) {
|
||||
echo "</a>\n";
|
||||
echo "<br /> ";
|
||||
} else {
|
||||
$link = $ref . "&action=add&pic=" . $i;
|
||||
echo "<a href=\"$link\">";
|
||||
echo "<img style=\"border: 2px solid red;\" src=\"../img/no.jpg\" />";
|
||||
echo "</a>\n";
|
||||
|
||||
@@ -17,4 +17,3 @@ if ($result2) {
|
||||
echo '<a href="index.php?section=gb">Zur<75>ck zur <20>bersicht</a>';
|
||||
|
||||
|
||||
?>
|
||||
@@ -10,4 +10,3 @@ if ($result2) {
|
||||
echo '<a href="' . $ref . '">Zur<75>ck zur <20>bersicht</a>';
|
||||
|
||||
|
||||
?>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
$sql1 = 'SELECT * FROM ' . $table . '';
|
||||
$sql1 = 'SELECT * FROM ' . $table . ';';
|
||||
$result1 = $db->query($sql1);
|
||||
?>
|
||||
<fieldset>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
$sql1 = 'SELECT * FROM ' . $table . '';
|
||||
$sql1 = 'SELECT * FROM ' . $table . ';';
|
||||
$result1 = $db->query($sql1);
|
||||
|
||||
echo "<label><b>Mieter</b></label>";
|
||||
|
||||
@@ -10,4 +10,3 @@ if (isset($_POST['add'])) {
|
||||
include "inhalte/kal/saison/standard.php";
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -10,4 +10,3 @@ if ($result2) {
|
||||
echo '<a href="index.php?section=kal&t=saison">Zur<75>ck zur <20>bersicht</a>';
|
||||
|
||||
|
||||
?>
|
||||
@@ -1,6 +1,4 @@
|
||||
<?php
|
||||
if (isset($_GET['section']) and isset($links[$_GET['section']])) {
|
||||
include $links[$_GET['section']];
|
||||
} else {
|
||||
}
|
||||
?>
|
||||
@@ -1,2 +1,2 @@
|
||||
<h1>Administrationsbereich Ferienhaus Wille</h1>
|
||||
<p>Hier können die Inhalte der Homepage geändert werden!</p>
|
||||
<p>Hier können die Inhalte der Homepage geändert werden!</p>
|
||||
98
css/page.css
98
css/page.css
@@ -7,8 +7,7 @@ html {
|
||||
|
||||
body {
|
||||
width: 990px;
|
||||
margin: auto;
|
||||
margin-top: 10px;
|
||||
margin: 10px auto auto;
|
||||
border-top: 5px solid #F4F1ED;
|
||||
border-bottom: 5px solid #F4F1ED;
|
||||
background-color: #F4F1ED;
|
||||
@@ -27,8 +26,8 @@ h1 {
|
||||
color: #F4F1ED;
|
||||
font-weight: bold;
|
||||
height: 42px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
@@ -36,7 +35,7 @@ h2 {
|
||||
color: #574730;
|
||||
font-weight: bold;
|
||||
margin: 10px 20px;
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
@@ -45,12 +44,12 @@ h3 {
|
||||
font-weight: bold;
|
||||
color: #574730;
|
||||
margin: 10px 20px;
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 10px 20px;
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
height: 2px;
|
||||
color: #574730;
|
||||
background-color: #574730;
|
||||
@@ -72,14 +71,14 @@ table {
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
td {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table.preise {
|
||||
@@ -107,13 +106,13 @@ table.cal {
|
||||
table.angebot {
|
||||
font-weight: bold;
|
||||
border-collapse: collapse;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table.cal th, table.cal td {
|
||||
text-align: center;
|
||||
padding: 3px 0px 2px 0px;
|
||||
padding: 3px 0 2px 0;
|
||||
}
|
||||
|
||||
table.preise th, table.preise td {
|
||||
@@ -155,7 +154,7 @@ td.bel {
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0px;
|
||||
border: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
@@ -176,7 +175,7 @@ this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)
|
||||
|
||||
#header {
|
||||
height: 150px;
|
||||
margin: 0px -4px;
|
||||
margin: 0 -4px;
|
||||
border-left: 4px solid #907959;
|
||||
border-right: 4px solid #907959;
|
||||
border-top: 4px solid #907959;
|
||||
@@ -186,8 +185,8 @@ this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)
|
||||
ul#Navigation {
|
||||
position: relative;
|
||||
top: 110px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
float: right;
|
||||
text-align: center;
|
||||
z-index: 5;
|
||||
@@ -198,8 +197,8 @@ ul#Navigation li {
|
||||
font-size: 15px;
|
||||
position: relative;
|
||||
list-style: none;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul#Navigation li a:hover {
|
||||
@@ -207,8 +206,8 @@ ul#Navigation li a:hover {
|
||||
}
|
||||
|
||||
ul#Navigation li ul {
|
||||
margin: 0px;
|
||||
padding: 10px 0px 0px 0px;
|
||||
margin: 0;
|
||||
padding: 10px 0 0 0;
|
||||
position: absolute;
|
||||
height: 190px;
|
||||
width: 150px;
|
||||
@@ -221,8 +220,8 @@ ul#Navigation li ul li {
|
||||
float: none;
|
||||
font-size: 15px;
|
||||
display: block;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul#Navigation a, ul#Navigation span {
|
||||
@@ -244,7 +243,7 @@ ul#Navigation li ul a {
|
||||
line-height: 20px;
|
||||
width: 140px;
|
||||
text-align: left;
|
||||
margin: 0px 0px 0px 5px;
|
||||
margin: 0 0 0 5px;
|
||||
}
|
||||
|
||||
ul#Navigation li ul a:hover {
|
||||
@@ -265,7 +264,7 @@ ul#Navigation li:hover ul {
|
||||
clear: left;
|
||||
height: 4px;
|
||||
background-color: #961017;
|
||||
margin: 0px 0px 0px 0px;
|
||||
margin: 0 0 0 0;
|
||||
font-size: 1px;
|
||||
}
|
||||
|
||||
@@ -274,23 +273,22 @@ ul#Navigation li:hover ul {
|
||||
clear: left;
|
||||
height: 2px;
|
||||
background-color: #961017;
|
||||
margin: 0px 0px 0px 0px;
|
||||
margin: 0 0 0 0;
|
||||
font-size: 1px;
|
||||
}
|
||||
|
||||
#cleaner {
|
||||
clear: both;
|
||||
margin-top: 0px;
|
||||
margin-top: 0;
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
#inhalt {
|
||||
min-height: 450px;
|
||||
width: 970px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 0px;
|
||||
margin: 0 0 0 0;
|
||||
padding: 0;
|
||||
text-align: justify;
|
||||
overflow: auto;
|
||||
color: #333;
|
||||
font-size: 12px;
|
||||
overflow: hidden;
|
||||
@@ -302,7 +300,7 @@ ul#Navigation li:hover ul {
|
||||
|
||||
#inhalt ul {
|
||||
color: #574730;
|
||||
margin: 10px 20px 10px 0px;
|
||||
margin: 10px 20px 10px 0;
|
||||
list-style-position: outside;
|
||||
font-size: 14px;
|
||||
}
|
||||
@@ -329,8 +327,8 @@ ul#Navigation li:hover ul {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 290px;
|
||||
margin: 0px 10px 3px 0px;
|
||||
padding: 0px;
|
||||
margin: 0 10px 3px 0;
|
||||
padding: 0;
|
||||
font-family: Calibri, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
color: #574730;
|
||||
@@ -343,15 +341,15 @@ ul#Navigation li:hover ul {
|
||||
|
||||
#anfrage input.hidden {
|
||||
width: auto;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#anfrage input.check {
|
||||
width: auto;
|
||||
float: right;
|
||||
margin: 0px 18px 3px 0px;
|
||||
padding: 0px;
|
||||
margin: 0 18px 3px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
* html #anfrage input.check {
|
||||
@@ -364,8 +362,8 @@ ul#Navigation li:hover ul {
|
||||
|
||||
#anfrage textarea {
|
||||
width: 420px;
|
||||
margin: 0px 0px 10px 0px;
|
||||
padding: 0px;
|
||||
margin: 0 0 10px 0;
|
||||
padding: 0;
|
||||
font-family: Calibri, Geneva, Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
color: #574730;
|
||||
@@ -381,38 +379,38 @@ ul.angebot li {
|
||||
}
|
||||
|
||||
#inhalt img.left {
|
||||
margin: 0px 20px;
|
||||
margin: 0 20px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#inhalt img.right {
|
||||
margin: 0px 20px;
|
||||
margin: 0 20px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#lspalte {
|
||||
width: 480px;
|
||||
float: left;
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#rspalte {
|
||||
width: 480px;
|
||||
float: right;
|
||||
padding: 0px;
|
||||
margin: 12px 0px 90px 0px;
|
||||
padding: 0;
|
||||
margin: 12px 0 90px 0;
|
||||
}
|
||||
|
||||
#rspalte img.gross {
|
||||
float: right;
|
||||
margin: 0xp;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#thumb {
|
||||
margin-top: -60px;
|
||||
margin-right: 3px;
|
||||
padding: 0px;
|
||||
padding: 0;
|
||||
float: right;
|
||||
}
|
||||
|
||||
@@ -420,13 +418,13 @@ ul.angebot li {
|
||||
float: right;
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
margin: 0px 0px 0px 3px;
|
||||
margin: 0 0 0 3px;
|
||||
}
|
||||
|
||||
#galerie img {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
margin: 0px 5px 5px 0px;
|
||||
margin: 0 5px 5px 0;
|
||||
}
|
||||
|
||||
#bild img {
|
||||
@@ -440,7 +438,7 @@ ul.angebot li {
|
||||
font-variant: small-caps;
|
||||
height: 38px;
|
||||
line-height: 38px;
|
||||
margin: 0px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#footer img {
|
||||
|
||||
@@ -3,5 +3,5 @@
|
||||
da sie nur ein Bild ausgibt und kein
|
||||
PHP-Code benoetigt.
|
||||
-->
|
||||
<a href="http://www.steinle-computer.de" target="_blank">© CS medien- & kommunikationssysteme</a>
|
||||
<a href="https://www.steinle-computer.de" target="_blank">© CS medien- & kommunikationssysteme</a>
|
||||
<span style="float: left; margin-left: 20px;">Ferienhaus Wille - 87541 Bad Hindelang - Tel: +49 8324 952154 - E-mail: info@ferienhaus-wille.de</span>
|
||||
@@ -2,4 +2,3 @@
|
||||
include "funktionen.php";
|
||||
include "variablen.php";
|
||||
include "konstanten.php";
|
||||
?>
|
||||
@@ -2,5 +2,5 @@
|
||||
|
||||
// Die Datei inc/funktionen.php
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
// konstanten.php
|
||||
define('MYSQL_HOST', 'localhost');
|
||||
define('MYSQL_USER', 'root');
|
||||
define('MYSQL_PASS', 'lmaa,dw.');
|
||||
define('MYSQL_DATABASE', 'wille');
|
||||
?>
|
||||
const MYSQL_HOST = 'localhost';
|
||||
const MYSQL_USER = 'root';
|
||||
const MYSQL_PASS = 'lmaa,dw.';
|
||||
const MYSQL_DATABASE = 'wille';
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
// konstanten.php
|
||||
define('MYSQL_HOST', 'localhost');
|
||||
define('MYSQL_USER', 'web104');
|
||||
define('MYSQL_PASS', 'lmaa,dw.');
|
||||
define('MYSQL_DATABASE', 'usr_web104_1');
|
||||
?>
|
||||
const MYSQL_HOST = 'localhost';
|
||||
const MYSQL_USER = 'web104';
|
||||
const MYSQL_PASS = 'lmaa,dw.';
|
||||
const MYSQL_DATABASE = 'usr_web104_1';
|
||||
|
||||
@@ -17,4 +17,3 @@ $titel['home'] = "Willkommen beim Ferienhaus Wille";
|
||||
$titel['leist'] = "Beratung, Satz, Druck und mehr";
|
||||
$titel['anreise'] = "Kontakt zur Druckerei Martin";
|
||||
|
||||
?>
|
||||
@@ -4,4 +4,3 @@ if (isset($_GET['section']) and isset($dateien[$_GET['section']])) {
|
||||
} else {
|
||||
include $dateien['will'];
|
||||
}
|
||||
?>
|
||||
@@ -42,7 +42,7 @@
|
||||
if (trim($from_mail) == "")
|
||||
$err_text .= "Bitte die E-Mail-Adresse angeben!<br>";
|
||||
else
|
||||
if (!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,6})$", $from_mail))
|
||||
if (!preg_match("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,6})$", $from_mail))
|
||||
$err_text .= "Bitte eine gueltige E-Mail-Adresse angeben.<br>";
|
||||
if (trim($mail_subject) == "") $err_text .= "Bitte einen Betreff eingeben.<br>";
|
||||
|
||||
@@ -152,7 +152,7 @@
|
||||
<br/>
|
||||
<br/>
|
||||
<p>Wir empfehlen den Abschluss einer <a
|
||||
href="http://www.reiseversicherung.de/de/versicherung/deutschland/stornoversicherung-deutschland.html"
|
||||
href="https://www.reiseversicherung.de/de/versicherung/deutschland/stornoversicherung-deutschland.html"
|
||||
target="_blank">Reiserücktrittskostenversicherung</a></p>
|
||||
<?php
|
||||
} else {
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="rspalte" style="margin-top: 0px;"/>
|
||||
<div id="rspalte" style="margin-top: 0;"/>
|
||||
<h2 style="float: left;"><a href="index.php?section=gaby">Wohnung Gaby</a></h2>
|
||||
<h2 style="float: right;"><a href="index.php?section=amelie">Wohnung Amelie</a></h2>
|
||||
<br class="clear"/>
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
<p style="float:right;">
|
||||
<a href="img/kontakt/agbs.pdf" target="_blank"><img src="img/pdf.png" alt="Datei als PDF herunterladen"/></a>
|
||||
</p>
|
||||
<h2>Unsere AGB</h2>
|
||||
<br class="clear"/>
|
||||
<div id="lspalte">
|
||||
<h3>1. Abschluss des Vertrages</h3>
|
||||
<p>
|
||||
@@ -14,11 +12,11 @@
|
||||
<p>
|
||||
Der Abschluss des Gastaufnahme-/Beherbergungsvertrages verpflichtet die Vertragspartner
|
||||
für die gesamte Dauer des Vertrages zur Erfüllung der vereinbarten gegenseitigen Verpflichtungen:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Verpflichtung Gastgeber: Wohnung entsprechend der Bestellung bereitzuhalten</li>
|
||||
<li>Gast: Preis für die Zeit (Dauer) der Bestellung der Wohnung zu bezahlen.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>
|
||||
Diese Geschäftsbedingungen gelten über die mietweise überlassung von Ferienwohnungen vom
|
||||
Ferienhaus Wille zur Beherbergung.
|
||||
@@ -53,6 +51,8 @@
|
||||
Verlust wir hier eine Kostenpauschale von 10,00 Euro eingezogen.
|
||||
</p>
|
||||
</div>
|
||||
<h2>Unsere AGB</h2>
|
||||
<br class="clear"/>
|
||||
<div id="rspalte">
|
||||
<p>
|
||||
Bei Schäden, die durch den Gast verursacht werden, ist das Ferienhaus Wille berechtigt,
|
||||
@@ -79,7 +79,7 @@
|
||||
</p>
|
||||
<p>
|
||||
Wir empfehlen Ihnen deshalb, den Abschluss einer <a
|
||||
href="http://www.reiseversicherung.de/de/versicherung/deutschland/stornoversicherung-deutschland.html"
|
||||
href="https://www.reiseversicherung.de/de/versicherung/deutschland/stornoversicherung-deutschland.html"
|
||||
target="_blank">
|
||||
Reiserücktrittskostenversicherung.</a>
|
||||
</p>
|
||||
|
||||
@@ -19,29 +19,29 @@
|
||||
Gerne holen wir Sie auch direkt am Bahnhof in Sonthofen ab. Sprechen Sie uns darauf an.
|
||||
</p>
|
||||
<ul>
|
||||
<li><a href="http://www.bahn.de" target="_blank">Deutsche Bahn</a></li>
|
||||
<li><a href="http://reiseauskunft.bahn.de/bin/query.exe/d" target="_blank">Reiseauskunft</a></li>
|
||||
<li><a href="https://www.bahn.de" target="_blank">Deutsche Bahn</a></li>
|
||||
<li><a href="https://reiseauskunft.bahn.de/bin/query.exe/d" target="_blank">Reiseauskunft</a></li>
|
||||
</ul>
|
||||
<h3>Mit dem Flugzeug</h3>
|
||||
<p>Flughäfen</p>
|
||||
<ul>
|
||||
<li><a href="http://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker1" target="_blank">Allgäu
|
||||
<li><a href="https://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker1" target="_blank">Allgäu
|
||||
Airport Memmingen</a></li>
|
||||
<li><a href="http://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker2" target="_blank">Flughafen
|
||||
<li><a href="https://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker2" target="_blank">Flughafen
|
||||
Friedrichshafen</a></li>
|
||||
<li><a href="http://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker3" target="_blank">Flughafen
|
||||
<li><a href="https://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker3" target="_blank">Flughafen
|
||||
München</a></li>
|
||||
<li><a href="http://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker4" target="_blank">Flughafen
|
||||
<li><a href="https://www.allgaeu-gastgebermitherz.de/index.shtml?flugverbindungen#anker4" target="_blank">Flughafen
|
||||
Stuttgart</a></li>
|
||||
</ul>
|
||||
<p>
|
||||
</p>
|
||||
<p><b>Transfer & Mietwagen vom Flughafen Memmingen</b></p>
|
||||
<p><b>Transferservice</b><br/>
|
||||
Buchen Sie hier Ihren Bustransfer: <a href="http://www.allgaeu-airport-express.de/" target="_blank">www.allgaeu-airport-express.de</a>
|
||||
Buchen Sie hier Ihren Bustransfer: <a href="https://www.allgaeu-airport-express.de/" target="_blank">www.allgaeu-airport-express.de</a>
|
||||
</p>
|
||||
<p><b>Mietwagen</b><br/>
|
||||
<a href="http://www.europcar.de/EBE/module/booking/FirstStep.do?sessionExpired=true" target="_blank">Mietwagen
|
||||
<a href="https://www.europcar.de/EBE/module/booking/FirstStep.do?sessionExpired=true" target="_blank">Mietwagen
|
||||
über Europcar</a><br/>
|
||||
</p>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<h2 style="margin-top: 0px;">Disclaimer (Haftungsausschluss)</h2>
|
||||
<h2 style="margin-top: 0;">Disclaimer (Haftungsausschluss)</h2>
|
||||
<h3>Verantwortlich für den Inhalt der Homepage</h3>
|
||||
<p>Silvia Jörg ist als Inhaltsanbieter gem. § 8 Teledienstegesetz (TDG) für die eigenen Inhalte,
|
||||
die zur Nutzung bereitgehalten werden, verantwortlich. Das Angebot enthält jedoch auch Links
|
||||
@@ -12,5 +12,5 @@
|
||||
<p>Hinweis zur Online-Streitbeilegung gemäß Art. 14 Abs. 1 ODR-VO:
|
||||
Die Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit, die Sie unter nachfolgenden
|
||||
Link finden:
|
||||
<p/>
|
||||
<td><a target="_blank" href="http://ec.europa.eu/consumers/odr/">https://ec.europa.eu/consumers/odr/</a></td>
|
||||
</p>
|
||||
<td><a target="_blank" href="https://ec.europa.eu/consumers/odr/">https://ec.europa.eu/consumers/odr/</a></td>
|
||||
@@ -66,7 +66,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Homepage:</td>
|
||||
<td><a target="_blank" href="http://www.steinle-computer.de">www.steinle-computer.de</a></td>
|
||||
<td><a target="_blank" href="https://www.steinle-computer.de">www.steinle-computer.de</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
Auf der rechten Seite können Sie die Kartenarten verändern.
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://maps.google.de/maps?f=q&source=embed&hl=de&geocode=&q=bad+hindelang,+k%C3%BChgasse+3&sll=51.151786,10.415039&sspn=20.78646,67.631836&ie=UTF8&hq=&hnear=K%C3%BChgasse+3,+87541+Bad+Hindelang,+Oberallg%C3%A4u,+Bayern&t=h&ll=47.507113,10.389977&spn=0.02783,0.054932&z=14&iwloc=A&iwstate1=dir"
|
||||
<a href="https://maps.google.de/maps?f=q&source=embed&hl=de&geocode=&q=bad+hindelang,+k%C3%BChgasse+3&sll=51.151786,10.415039&sspn=20.78646,67.631836&ie=UTF8&hq=&hnear=K%C3%BChgasse+3,+87541+Bad+Hindelang,+Oberallg%C3%A4u,+Bayern&t=h&ll=47.507113,10.389977&spn=0.02783,0.054932&z=14&iwloc=A&iwstate1=dir"
|
||||
target="_blank">Größere Kartenansicht</a>
|
||||
</p>
|
||||
</div>
|
||||
<div style="float:right; width:640px;">
|
||||
<p>
|
||||
<iframe width="600" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
|
||||
src="http://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=bad+hindelang,+k%C3%BChgasse+3&sll=51.151786,10.415039&sspn=20.78646,67.631836&ie=UTF8&hq=&hnear=K%C3%BChgasse+3,+87541+Bad+Hindelang,+Oberallg%C3%A4u,+Bayern&t=h&ll=47.507113,10.389977&spn=0.02783,0.054932&z=14&iwloc=A&iwstate1=dir&output=embed"></iframe>
|
||||
src="https://maps.google.de/maps?f=q&source=s_q&hl=de&geocode=&q=bad+hindelang,+k%C3%BChgasse+3&sll=51.151786,10.415039&sspn=20.78646,67.631836&ie=UTF8&hq=&hnear=K%C3%BChgasse+3,+87541+Bad+Hindelang,+Oberallg%C3%A4u,+Bayern&t=h&ll=47.507113,10.389977&spn=0.02783,0.054932&z=14&iwloc=A&iwstate1=dir&output=embed"></iframe>
|
||||
<br/>
|
||||
</p>
|
||||
<p><small>
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
</table>
|
||||
<img style="margin: 10px 20px;" src="img/kontakt/kont.jpg"/>
|
||||
</div>
|
||||
<div style="margin-top: 0px;" id="rspalte">
|
||||
<div style="margin-top: 0;" id="rspalte">
|
||||
<div id="lspalte"><h2>Impressum</h2>
|
||||
<h2>Inhaltlich Verantwortlich:</h2>
|
||||
<h3>Ferienhaus Wille </h3>
|
||||
@@ -102,7 +102,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Homepage:</td>
|
||||
<td><a target="_blank" href="http://www.steinle-computer.de">www.steinle-computer.de</a></td>
|
||||
<td><a target="_blank" href="https://www.steinle-computer.de">www.steinle-computer.de</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<b>Die Preise verstehen sich mit Ausnahme der Endpreise zuzüglich Kurbeitrag in Höhe von 3,30 Euro pro Person/Nacht.<br/>
|
||||
Die Endreinigung ist im Preis inbegriffen.</b><br/>
|
||||
Wir empfehlen <a
|
||||
href="http://www.reiseversicherung.de/de/versicherung/deutschland/stornoversicherung-deutschland.html"
|
||||
href="https://www.reiseversicherung.de/de/versicherung/deutschland/stornoversicherung-deutschland.html"
|
||||
target="_blank">
|
||||
eine Reiserücktrittversicherung</a> abzuschließen, damit bei einer eventuellen Stornierung für beide
|
||||
Seiten keine finanziellen Nachteile entstehen! Bei Stornierungen erlauben wir uns nach den Bestimmungen des BGB
|
||||
|
||||
@@ -40,4 +40,3 @@ for ($i = 9; $i >= 0; $i--) {
|
||||
}
|
||||
echo "</div>\n";
|
||||
|
||||
?>
|
||||
@@ -41,4 +41,3 @@ for ($i = 9; $i >= 0; $i--) {
|
||||
}
|
||||
echo "</div>\n";
|
||||
|
||||
?>
|
||||
@@ -24,7 +24,7 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div style="margin-top: 0px;" id="rspalte">
|
||||
<div style="margin-top: 0;" id="rspalte">
|
||||
<p><b>im Winter:</b></p>
|
||||
<ul>
|
||||
<li>Skifahren und Snowboarden - 1 Schlepplift und drei 6er-Sesselbahnen, sowie eine 8er-Sesselbahn mit insgesamt
|
||||
@@ -43,26 +43,26 @@
|
||||
</div>
|
||||
<br class="clear"/>
|
||||
<div id="lspalte">
|
||||
<img class="left" src="img/umgebung/akt/radeln1.JPG"/>
|
||||
<img class="left" src="img/umgebung/akt/radeln1.JPG" alt="radeln"/>
|
||||
<p>
|
||||
<b>Unsere Insider-Tipps für den Sommer:</b><br/>
|
||||
<a href="img/umgebung/akt/radtour.pdf" target="_blank"><img
|
||||
style="float: left; height: 20px; margin-right: 5px;" src="img/pdf.png"/>Fahrradtour Rettenschwanger Tal</a>
|
||||
style="float: left; height: 20px; margin-right: 5px;" src="img/pdf.png" alt="radtour"/>Fahrradtour Rettenschwanger Tal</a>
|
||||
</p>
|
||||
<br/>
|
||||
<p>
|
||||
<a href="http://www.badhindelang.de/biken-radfahren/mountainbiken" target="_blank">Bad Hindelang Mountain-Bike
|
||||
<a href="https://www.badhindelang.de/biken-radfahren/mountainbiken" target="_blank">Bad Hindelang Mountain-Bike
|
||||
Tourenplaner</a><br/>
|
||||
<a href="http://www.badhindelang.de/wandern-klettern/wanderwege-bad-hindelang" target="_blank">Bad Hindelang
|
||||
<a href="https://www.badhindelang.de/wandern-klettern/wanderwege-bad-hindelang" target="_blank">Bad Hindelang
|
||||
Wanderung-Tourenplaner</a>
|
||||
</p>
|
||||
</div>
|
||||
<div style="margin-top: 0px;" id="rspalte">
|
||||
<img class="left" src="img/umgebung/akt/Winter1L.png"/>
|
||||
<div style="margin-top: 0;" id="rspalte">
|
||||
<img class="left" src="img/umgebung/akt/Winter1L.png" alt="winter"/>
|
||||
<p>
|
||||
<b>Unsere Insider-Tipps für den Winter:</b><br/>
|
||||
<a href="img/umgebung/akt/Schwarzenberghuette.pdf" target="_blank"><img
|
||||
style="float: left; height: 20px; margin-right: 5px;" src="img/pdf.png"/>Wanderung
|
||||
style="float: left; height: 20px; margin-right: 5px;" src="img/pdf.png" alt="wanderung"/>Wanderung
|
||||
Schwarzenberghütte</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@@ -6,99 +6,99 @@
|
||||
<col width="300px"
|
||||
</colgroup>
|
||||
<tr>
|
||||
<th colspan="2" style="padding-top:0px;">Bad Hindelang:</th>
|
||||
<th colspan="2" style="padding-top:0;">Bad Hindelang:</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ferienland Bad Hindelang</td>
|
||||
<td><a href="http://www.badhindelang.de/" target="_blank">www.badhindelang.de</a></td>
|
||||
<td><a href="https://www.badhindelang.de/" target="_blank">www.badhindelang.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bad Hindelang Erlebnis Weihnachtsmarkt</td>
|
||||
<td><a href="http://www.hindelanger-weihnachtsmarkt.de/" target="_blank">www.hindelanger-weihnachtsmarkt.de</a>
|
||||
<td><a href="https://www.hindelanger-weihnachtsmarkt.de/" target="_blank">www.hindelanger-weihnachtsmarkt.de</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bergbahnen Hindelang Oberjoch/Unterjoch</td>
|
||||
<td><a href="http://www.bergbahnen-hindelang-oberjoch.de/"
|
||||
<td><a href="https://www.bergbahnen-hindelang-oberjoch.de/"
|
||||
target="_blank">www.bergbahnen-hindelang-oberjoch.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bike-Park, Downhill-Strecken, etc.</td>
|
||||
<td><a href="http://www.bikepark-hindelang.de/" target="_blank">www.bikepark-hindelang.de</a></td>
|
||||
<td><a href="https://www.bikepark-hindelang.de/" target="_blank">www.bikepark-hindelang.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hindelanger Bergführerbüro</td>
|
||||
<td><a href="http://www.bergschulen.de/" target="_blank">www.bergschulen.de</a></td>
|
||||
<td><a href="https://www.bergschulen.de/" target="_blank">www.bergschulen.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="2">Allgemein:</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tourismusverband Allgäu</td>
|
||||
<td><a href="http://www.allgaeu.de/" target="_blank">www.allgaeu.de</a></td>
|
||||
<td><a href="https://www.allgaeu.de/" target="_blank">www.allgaeu.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Verein - Allgäu Gastgeber mit Herz</td>
|
||||
<td><a href="http://www.allgaeu-gastgebermitherz.de/" target="_blank">www.allgaeu-gastgebermitherz.de</a></td>
|
||||
<td><a href="https://www.allgaeu-gastgebermitherz.de/" target="_blank">www.allgaeu-gastgebermitherz.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="2">Erlebnis- und Freizeitbäder:</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Wonnemar Sonthofen</td>
|
||||
<td><a href="http://www.wonnemar.de/de/sonthofen/home.html" target="_blank">www.wonnemar.de</a></td>
|
||||
<td><a href="https://www.wonnemar.de/de/sonthofen/home.html" target="_blank">www.wonnemar.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Aquaria Oberstaufen</td>
|
||||
<td><a href="http://www.aquaria.de/" target="_blank">www.aquaria.de</a></td>
|
||||
<td><a href="https://www.aquaria.de/" target="_blank">www.aquaria.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Alpspitz-Bade-Center Nesselwang</td>
|
||||
<td><a href="http://www.abc-nesselwang.de/" target="_blank">www.abc-nesselwang.de</a></td>
|
||||
<td><a href="https://www.abc-nesselwang.de/" target="_blank">www.abc-nesselwang.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th colspan="2">Ausflugziele:</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Erzgruben, Burgberg</td>
|
||||
<td><a href="http://www.erzgruben.de/" target="_blank">www.erzgruben.de</a></td>
|
||||
<td><a href="https://www.erzgruben.de/" target="_blank">www.erzgruben.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sturmannshöhle, Obermaiselstein</td>
|
||||
<td><a href="http://www.obermaiselstein.de/sturmannshoehle-1" target="_blank">www.obermaiselstein.de/sturmannshoehle-1</a>
|
||||
<td><a href="https://www.obermaiselstein.de/sturmannshoehle-1" target="_blank">www.obermaiselstein.de/sturmannshoehle-1</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Breitachklamm, Oberstdorf</td>
|
||||
<td><a href="http://www.breitachklamm.de/" target="_blank">www.breitachklamm.de</a></td>
|
||||
<td><a href="https://www.breitachklamm.de/" target="_blank">www.breitachklamm.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Königsschlösser</td>
|
||||
<td><a href="http://www.neuschwanstein.de/" target="_blank">www.neuschwanstein.de </a></td>
|
||||
<td><a href="https://www.neuschwanstein.de/" target="_blank">www.neuschwanstein.de </a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Insel Mainau</td>
|
||||
<td><a href="http://www.mainau.de/" target="_blank">www.mainau.de </a></td>
|
||||
<td><a href="https://www.mainau.de/" target="_blank">www.mainau.de </a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Legoland Günzburg</td>
|
||||
<td><a href="http://www.legoland.de/" target="_blank">www.legoland.de</a></td>
|
||||
<td><a href="https://www.legoland.de/" target="_blank">www.legoland.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Alpsee Coaster Rodelbahn, Immenstadt</td>
|
||||
<td><a href="http://www.alpsee-bergwelt.de/" target="_blank"> www.alpsee-bergwelt.de</a></td>
|
||||
<td><a href="https://www.alpsee-bergwelt.de/" target="_blank"> www.alpsee-bergwelt.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Allgäuer Hallenkartbahn Kaufbeuren</td>
|
||||
<td><a href="http://www.all-kart.de/" target="_blank">www.all-kart.de</a></td>
|
||||
<td><a href="https://www.all-kart.de/" target="_blank">www.all-kart.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Skylinepark in Bad Wörishofen</td>
|
||||
<td><a href="http://www.skylinepark.de/" target="_blank">www.skylinepark.de</a></td>
|
||||
<td><a href="https://www.skylinepark.de/" target="_blank">www.skylinepark.de</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ravensburger Spieleland in Meckenbeuren</td>
|
||||
<td><a href="http://www.ravensburger-spieleland.de/" target="_blank">www.ravensburger-spieleland.de</a></td>
|
||||
<td><a href="https://www.ravensburger-spieleland.de/" target="_blank">www.ravensburger-spieleland.de</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user