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.
<html>
<head>
<title>Tutorials.de</title>
</head>
<body>
<!-- dein code -->
<html>
<head>
<title>lala</title>
</head>
<body>
dein code
</body>
</html>
<!-- ende dein code -->
</body>
</html>
<html>
<head>
<script language="javascript" type="text/javascript">
var ids=new Array();
function QAinit(){
if(document.getElementById){
var tids=document.getElementsByTagName('div');
for(i=0;i<tids.length;i++)if(tids[i].className=="question")ids[ids.length]=tids[i];
for(i=0;i<ids.length;i++)ids[i].onmouseup=setstate;
}}
function setstate(){
for(i=0;i<ids.length;i++){
if(ids[i]==this){
var d=this.parentNode.getElementsByTagName('div')[1];
if(d.style.display=="block")d.style.display="none";
else d.style.display="block";
}}}
function expandall(){
if(document.getElementById){
for(i=0;i<ids.length;i++)ids[i].parentNode.getElementsByTagName('div')[1].style.display="block";
}}
function collapseall(){
if(document.getElementById){
for(i=0;i<ids.length;i++)ids[i].parentNode.getElementsByTagName('div')[1].style.display="none";
}}
window.onload=QAinit;
</script>
<style type="text/css">
.question {cursor:default;display:block;padding:0px;}
.answer {display:none;padding-top:4px;}
.container{display:block;}
</style>
</head>
<body>
<div class="container">
<div class="question">
Sind wir faul?</div>
<div class="answer">
Ja!
</div>
</div>
</body>
</html>