how to make a text website

Solutions on MaxInterview for how to make a text website by the best coders in the world

showing results for - "how to make a text website"
Julia
27 Jan 2016
1<!-- This is a simple text website -->
2<!DOCTYPE html>
3<html>
4  <head>
5    <title>Hello</title>
6  </head>
7  <body>
8    <h1>Hello World!</h1>
9    <p>This is my first website</p>
10  </body>
11</html>