HTML Reader

Contact Us

letstalk@htmlreader.com

HTML Reader





HTML

The language for building web pages

Run your Code now

HTML Example:

<!DOCTYPE html>
<html>
<title> HTML Reader </title>

<body>

<h1> This is a heading </h1>
<p> This is a paragraph </p>

</body>

</html>
Try it

CSS

The language for styling web pages

Run your Code now

CSS Example:

body {
  background-color: lightblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
}
Try it