Developer Network
Would you like to react to this message? Create an account in a few clicks or log in to continue.

HTML Starters Tutorial

Go down

HTML Starters Tutorial Empty HTML Starters Tutorial

Post by MasterJames Sun Jan 06, 2013 8:13 pm

In this tutorial you will learn how to use HTML and how to code in it, The first thing you need to do is start off you're topic in notepad (or your editor of choice). and then type the following:
Code:
<html>
<head>


</head>
<body>


</body>
</html>
The HTML tag at the top shows you are coding in HTML the <head> tag is where you put things such as your title and meta tags ( we will get into that later). when you see a </ that means that section has finished. the <body> tag is where you put most of your code. This is the most important tag because it is what users see when they enter your website. Now we will add the title for the website, you will ad it between the two head tags; like this:
Code:

<html>
<head>
<title> HTML Starters Tutorial </title>

</head>
<body>


</body>
</html>
Now you have a title and are ready to move on, Lets go through some of the different types of things you can use in your <body> tag:
<u> </u> = Underline
<b> </b> = Bold
<i> </i> = Italics (Not sure if right yet ????)
<center> </center> = Center the font
<h1> </h1> creates a header size of 1 (Highest:7)
Now we've got the basics Assemble them into your <body> tags. Now before we end this tutorial to save a html file in Notepad save it as "index.html" and also click in the selection box "All File Types"

Cya later guys
Owner
avatar
MasterJames
Admin
Admin

Language : English, little French
Posts : 13
Join date : 2013-01-05
Age : 25
Location : Nottingham

https://developernetwork.board-directory.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum