html website example
Example 1: html example
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
Example 2: 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 3: basic html codes
<html> </html>
<body> </body>
<h1> </h1>
<br>
<p> </p>
<head> </head>