Answers for "create html file"

2

how to create an html file

<!-- Use any text editor, create a new file, paste this
and save it as index.html-->

<!DOCTYPE html>
<html>
  <head>
		<title> A Sample Webpage </title>
  </head>
  
  <body>
     <p> Hello World! </p>
  </body>
</html>
Posted by: Guest on May-31-2021
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
0

how to create a html file

Make a folder
Create a file with .html at the end of it and open it with a text editor
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language