Answers for "How do I write HTML code?"

6

how to start a html file

<!DOCTYPE html>
<html>
	<head>
		<title>Page Title</title>
	</head>
	<body>
      
	</body>
</html>
Posted by: Guest on June-11-2020
3

create page html

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Posted by: Guest on February-24-2020

Browse Popular Code Answers by Language