HTML is the most basic thing you need to know if you want to create your own website. In this tutorial we will learn how to create the basic page, and some of the most commonly used tags.
Basic Page
If you want to make a basic HTML page you need to use these codes.
<html> <head> <title>Your Site Title here</title> </head> <body> Put your content in here! </body> </html>
You need that code to make a page. This is only a very basic page so you will need a CSS to customise it.
Tags
Here are just a few useful tags and their uses. When you use a tag you always need to close the tag.
<strong></strong> – This is to make the text inside the tag bold.
<em></em> – This makes the text italic.
<p></p> – This makes a paragraph.
<img src="image.jpg" /> – This will show an image. Change “image.jpg” to where your image is placed.
<br/> – This tag is a line break, it’s like when you press enter and it makes a new line. You use this in your HTML because if you press enter with the raw code, nothing will happen.
And that’s okay, I’m trying to think of something too
A tutorial, uhm? I should take some time to think about...