Answers for "simple web page using html code"

6

simple html website coding

<!DOCTYPE html>
<html>
<head>
<style>
body {background="purple";}
</style>
<title>Page Title<title>
</head>
<body>
<h1>Yay</h1>
<p>yay is a word used to describe that your happy!</p>
</body>
</html>
Posted by: Guest on September-11-2020
0

basic html webpage

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>
Posted by: Guest on December-08-2021

Browse Popular Code Answers by Language