Answers for "how to create a html webpage"

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

Code answers related to "how to create a html webpage"

Browse Popular Code Answers by Language