Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>
<style type="text/css">
<!--
body
{
padding: 0;
margin: 0;
}
#wrapper
{
width: 100%;
margin: 10px auto;
padding: 0;
}
#links
{
width: 49%; /* kleiner als 50% */
float: left;
background: #cfcfcf;
}
#inhalt
{
position: absolute;
left: 50%;
width: 400px;
margin-left: -200px; /* neg. Hälfte von width:400px = horizontal zentriertes DIV */
background: #809bbe;
}
#rechts
{
width: 49%; /* kleiner als 50% */
float: right;
background: #cfcfcf;
text-align: right;
}
-->
</style>
</head>
<body>
<div id="wrapper">
<div id="links">links</div>
<div id="inhalt">inhalt</div>
<div id="rechts">rechts</div>
</div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>
<style type="text/css">
<!--
body
{
padding: 0;
margin: 0;
}
#wrapper
{
width: 100%;
margin: 10px auto;
padding: 0;
}
#links
{
width: 49%; /* kleiner als 50% */
float: left;
background: #cfcfcf;
}
#inhalt
{
position: absolute;
left: 50%;
width: 400px;
margin-left: -200px; /* neg. Hälfte von width:400px = horizontal zentriertes DIV */
background: #809bbe;
}
#inhalt .texttitel
{
font-size: 18px;
}
#rechts
{
width: 49%; /* kleiner als 50% */
float: right;
background: #cfcfcf;
text-align: right;
}
-->
</style>
</head>
<body>
<div id="wrapper">
<div id="links">links</div>
<div id="inhalt">
<div class="texttitel">inhalt</div>
</div>
<div id="rechts">rechts</div>
</div>
</body>
</html>