Tutorials Navigation

Tutorials :: New :: Popular :: Top Rated

Tutorials: 18,326 Categories: 12

Total Tutorial Views: 41,378,367

[HTML] An introduction to HTML / Creating your first webpage

Tutorial Name: [HTML] An introduction to HTML / Creating your first webpage  

Category: PC Tutorials

Submitted By: -Deano

Date Added:

Comments: 1

Views: 844

Related Forum: PC Building Forum

Share:

HTML (Hyper-Text Markup Language) is one of the languages used to translate our content into the stuff you see on your screen.

A markup language typically has 'tags' which define what the content is and how it should be displayed, e.g. a "<body>" tag defines the content which will appear on the screen; it is the body of the document. Tags are followed, usually, by an ending tag such as "</body>" to signify the end of the document.

On to creating your first webpage...

All HTML documents will begin with "<html>" tags as a way for the device to understand what it is that it will be displaying.

Each HTML page is made up of the head and the body.
The head is something which is used for data and other information to be used without displaying it on-screen. Examples of content which you would place in your head section would be which fonts you want to use, where the device can find your other resources such as images and style sheets, the title of the page, and many more.

So to create your first page use the following code:
<html>
  <head>
    <title>My First Webpage</title>
  </head>
  <body>
    <p>My first webpage</p>
  </body>
</html>

Ratings

Current rating: 6.00 by 2 users
Please take one second and rate this tutorial...

Not a Chance
1
2
3
4
5
6
7
8
9
10
Absolutely

Comments

"[HTML] An introduction to HTML / Creating your first webpage" :: Login/Create an Account :: 1 comment

If you would like to post a comment please signin to your account or register for an account.

HaloPosted:

Man. Nice guide but still seems hard lol