text editor to html code example

Example 1: start html

<!DOCTYPE html>
<html>
<head>
<title>Page 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: online html editor

<!-- Answer to: "online html editor" -->

<!--
  A common good "online editor" would be:
  https://jsfiddle.net/

  However, for an online editor focusing specifically on html
  this one is pretty good:
  https://html-online.com/editor/
-->

Tags:

Html Example