This project provides template code for Hello World for the Web and is based on W3Schools HTML Tutorial.
Eric Pogue email:epogue@lewisu.edu
W3Schools HTML Tutorial for the HTML template code.
This project is licensed under the MIT License - see the LICENSE.md file for details.
Add English language and UTF-8 tags by modifying index.html so that it looks like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>