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>Test</title>
<script type="text/javascript">
Check = confirm("Wollen Sie diese Seite wirklich sehen?");
if (Check == false)
history.back();
</script>
</head><body>
</body></html>
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title></title>
<script language="JavaScript">
<!--
function send_formular() {
Check = confirm("Wollen Sie das Formular wirklich absenden?");
if (Check == false){
history.back();
} else {
document.Testform.submit();
}
}
//-->
</script>
<noscript></noscript>
</head>
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<form name="Testform" action="mailto:meine_emailadresse@meine_webseite.de" method="post">
.
.
.
hier kommen die Formularfelder
.
.
.
<input onClick="send_formular()" type="button" name="senden" value="Formular senden">
</form>
</body>
</html>