Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
Was meinst Du damit?mmmos schrieb:Wie richte ich eine Grafik am obersten rechten Rand und Linksbündig aus.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Dokumenttitel</title>
</head>
<body style="margin:0px;padding:0px;">
<img src="bildlinks.gif" width="200" height="200" style="float:left;">
<img src="bildrechts.gif" width="200" height="200" style="float:right;">
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Dokumenttitel</title>
</head>
<body>
<img src="bildlinks.gif" width="200" height="200" style="position:absolute;top:0px;left:0px;">
</body>
</html>