Jump to content

Recommended Posts

Posted
<!DOCTYPE html> 
<html> 
<head> 
<title>I AM A WEBSITE</title> 
<style> 
body { 
  background-color: white; 
} 
h1 { 
  color: black; 
  text-align: center; 
} 
</style> 
</head> 
<body> 
<h1>This is a Website</h1> 
<button onclick="myFunction()">click me</button> 
<p id="result">This text was generated by javascript</p> 
<script> 
function myFunction() { 
  let x = document.getElementById("result"); 
  x.style.fontSize = "25px"; 
  x.style.color = "red"; 
} 
</script> 
</body> 
</html> 

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...