simple html code code example

Example 1: simple html

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>

Example 2: html basic code

<!DOCTYPE html>
<html>
  <title>"TEXT"</title>
  <body>
    "Eliments"
  </body>
</html>

Example 3: 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>

Example 4: Basic HTML code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <style>
    </style>
    <title>Document</title>
  </head>
  <body>
  </body>
</html>

Example 5: basic html code

<!DOCTYPE html>
<html>
<head>
  <title>put your title here</title>
</head>
<body>
</body>
</html>

Example 6: basic html codes

<html> </html>
<body> </body>
<h1> </h1>
<br>
<p> </p>
<head> </head>

Tags:

Html Example