Answers for "html code for website"

3

setup html webpage

<!DOCTYPE html>
<html>
  <head lang="en">
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <!--optional css --><link rel="stylesheet" href="style.css" />
    <title>Document</title>
  </head>
  <body>
  </body>
</html>
Posted by: Guest on December-08-2020
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
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

Code answers related to "html code for website"

Browse Popular Code Answers by Language