Answers for "how to make a button using html"

5

html button

<form action="https://google.com">
    <input type="submit" value="Go to Google" />
</form>
Posted by: Guest on April-02-2021
0

how to use <button>

<!DOCTYPE html>
<script>
function log() {
console.log("Hello World!")
}
</script>
<html>
	<button onclick="log()">Button</button>
</html>
Posted by: Guest on January-15-2022

Code answers related to "how to make a button using html"

Browse Popular Code Answers by Language