Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script language="javascript">
<!--
function validatepoll() {
for (var m = 0; m < document.poll.radio.length; m++) {
if(document.poll.radio[m].checked == true) {
return true
}
}
window.alert("Choose first, then vote!")
return false
}
// -->
</script>
</head>
<body>
<form name="poll" onSubmit="return validatepoll();">
<input type="radio" name="radio" value="r1">..guestbook<br>
<input type="radio" name="radio" value="r2">..diaries</input><br>
<input type="radio" name="radio" value="r3">profiles</input><br>
<input type="submit" value="Vote">
</form>
</body>
</html>