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 XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Index</title>
<meta name="description" content="Index" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link type="text/css" rel="stylesheet" media="screen, projection" href="css/styles.css" />
<link type="text/css" rel="stylesheet" media="print" href="css/print.css" />
<script type="text/javascript" src="javascript/script.js"></script>
</head>
<body onload="init();">
<img id="image" src="http://www.html.de/images/1.jpg" alt="" />
</body>
</html>
var array = new Array("http://www.html.de/images/1.jpg", "http://www.html.de/images/2.jpg", "http://www.html.de/images/3.jpg", "http://www.html.de/images/4.jpg", "http://www.html.de/images/5.jpg");
var counter = 0;
function init() {
document.getElementById('image').src=array[counter%(array.length)];
counter++;
setTimeout("init()", 2000);
}