Answers for "simple page in html"

1

simple html

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>
Posted by: Guest on May-21-2020
0

basic html page

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Posted by: Guest on October-17-2021

Browse Popular Code Answers by Language