Answers for "simple code of html"

3

Basic HTML code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <style>
    </style>
    <title>Document</title>
  </head>
  <body>
  </body>
</html>
Posted by: Guest on May-20-2021
1

html basic code

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language