With Nigeria's Largest Web Developer site.
HTML
The Language for building web pages
<!DOCTYPE html>
<html>
<head>
<title>HTML Tutorial</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Try itCSS
The Language for building web pages
*{
margin:0;
padding:0;
box-sizing:border-box;
}
Try itJavaScript
The Language for building web pages
let name = document.querySelect('h1')
name.innerHTML = "Asaiah Henson"
Try itPython
The Language for building web pages
username = input('what is your name: ')
print(username)
name = "Asaiah Henson"
print(name)
Try it