My First HTML Tutorial

justin grierson
1 min readApr 15, 2019

--

How TO Build A Website from The Ground Up

Be One With Your Code

So there are so many CMS and one-click website makers that you may ask your self why do I need to know HTML or CSS the main reason is that its fun to write your known sites and also a lot of these sites put a lot of code in your site that you don’t need also you may be paying for services that you don't need so I’m going to show you HTML from the ground up.

Stage 1:

So first open up a text editor like Notepad or TextEdit. open a new page and type

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<title>My first HTML page</title>
</head>

<body>
<b>Hello World</b>
Your great and what are you going to build next
</body>
</html>

then save that page as index.html

If you’ve got this far great your a web developer

Next Tutorial Well be looking at Styling.

--

--