Free Script
.png)
<body>
<h1>Choose the Next Prime Minister of Pakistan</h1>
<div id="options">
<form>
<input type="radio" id="imran" name="pm" value="Imran Khan">
<label for="imran">Imran Khan</label>
<input type="radio" id="nawaz" name="pm" value="Nawaz Sharif">
<label for="nawaz">Nawaz Sharif</label>
<input type="radio" id="bilawal" name="pm" value="Bilawal">
<label for="bilawal">Bilawal</label><br><br>
</form>
</div>
<!-- Open new website when "Poll" is clicked -->
<button id="pollButton" onclick="openNewWebsite()">Poll</button>
<script>
function openNewWebsite() {
window.open('https://techpk3013', '_blank');
}
</script>
</body>
</html>
Comments
Post a Comment