Answers for "a simple website in html"

7

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 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