Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>CSS-Versuch</title>
<style type="text/css">
<!--
.container {
text-align:center;
}
//-->
</style>
</head>
<body>
<div class="container">
<hr width="50" size="2" color="darkblue">
</div>
</body>
</html>
text-align:center
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css" media="all">
<!--
body {
text-align:center;
}
#div1 {
border:1px solid #000000;
width:300px;
text-align:center;
}
#div2 {
border:1px solid #000000;
width:100px;
text-align:center;
}
//--></style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
</head>
<body>
<div id="div1">Lalalalla</div>
<div id="div2">2. Div</div>
<div id="div1"><div id="div2">Verschachtelt</div></div>
</body>
</html>