Basic Html Tutorial - Made it myself, hope you like it.

free web hosting
Free Web Hosting > Computers & Tech > How-To's and Tutorials > Programming > HTML, XML and other Markup Languages

Basic Html Tutorial - Made it myself, hope you like it.

chappill
HTML stands for hyper text markup language. It is a basic coding language used on almost every website.
There are some tags in HTML which must be used, whilst others are enhancing, but not essential.

Below I shall list the essential tags and there uses:

<HTML></HTML> This tells the browser that the language between the tags is going to be HTML so it knows how to read it.
Inbetween those tags come <BODY></BODY> These tags tell the browser that all the content that you wish to be displayed is in there.
They are the only essential tags for HTML! The list is short but if you only use them your site would look something like this:
http://www.vpc-hack.net/tut/basic/html
(site currently down =[)

Below I shall list some of the other tags that can be used:

<HEAD></HEAD> These tags will give you the ability to place a title for your page (the thing that goes at the very top of the browser above the address bar) or add other code such as CSS.

<TITLE></TITLE> These tags are placed within the <HEAD> tags and contain the title for your page (the thing at the very top of the browser above the address bar).

<BR> This tag is a line break, or a new line, in HTML hitting enter and going onto a new line won't display on the webpage, to make a new line you have to type <BR> where you want the new line to be.

<P> This is a new paragraph, much like the <BR> tag but with a slightly larger gap.

<CENTER></CENTER> The content between these tags will be aligned in the center of the page.

<ALIGN="left"></ALIGN> This will align all the content to the left of the page (which it does automatically).

<ALIGN="right"></ALIGN> The content between them to tags will be aligned to the right.

<BODY bgcolor="example"> This tag is built to replace the normal <BODY> tags and will give the page a background. (Note: COLOR is the correct spelling in HTML)

<FONT COLOR="example"></FONT> The content between these two tags will be the specified colour.

<FONT SIZE="1/2/3/4/5/6 etc"></FONT> The content between these tags will be the specified size (1 smallest upto 6 the largest)

<IMG SRC="/the/directory/its/kept/in/exapmle.extension"> THis will display the specified picture from the specified directory.
On windows it must contain the full path (C:\whatever)
If the picture you try to place is huge you can make it smaller by doing... <IMG SRC="/the/directory/its/kept/in/exapmle.extension" width="480" height="480">
That will give a width of 480 pixels and a height of 480 pixels.

Click <A HREF="/example/page2.extension">here</a> for a picture of a cat! That is an example of a link to a page called page2, the extension can be replaced by a number of file extensions, but most commenly either .php or .html

External pages can be linked to aswell using the same thing but when adding the link add it like this: <A HREF="http://95gms.co.cc">Click Here!</a> using http:// instead of www.

<li> This tag is a bullet point. You can use it to make a list i.e.
Shopping list:
<li> Milk
<li> Eggs
<li> Butter

<TABLE>
<tr>
<td>

</tr>
</td>
</TABLE>
The above would make a table with rows 1 and dimensions 1 (so it would be 1 row down and 1 across (the rows stretch to any size if you just keep typing)).
The table comes with a border, but you can remove this border and make it larger if you like by replacing the opening <TABLE> tag with this:
<TABLE border="1"> Replacing 1 with hos thick you want it (the higher the number the thicker the border).

<!--This is a comment!--> This tag is for comments, it will be ignored by browsers and not displayed on the page, even unless someone views you're page source.
Full example page with everything on it coming soon.

 

 

 


Reply

yordan
Nicely summarized, thanks. As you say, it's your way of telling this, I like the way saying that very few things are really necessary in order to make a simple html page with a title, a small text, a picture and a clickable link. And I love the way to resize too big pictures just in the html tab syntax.
QUOTE
<IMG SRC="/the/directory/its/kept/in/exapmle.extension"> THis will display the specified picture from the specified directory.
On windows it must contain the full path (C:\whatever)

I don't agree with this. In windows like in Linux or in standard Unix, I often use relative paths, relative to the index.html location. I very often use "pics/mydog.jpg"
This is very useful for servers like astahost, where you don't know the absolute path of your files, you only know the path relatively to your account home directory.
Regards
Yordan

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. essential tags of html programming - 59.77 hr back. (1)
  2. "adding link" "basic html" - 317.61 hr back. (1)
  3. cache:3ysocyymepmj:www.astahost.com/info.php/c-net-web-timer-control-tutorial_t6605.html c# timer beginner tutorial - 332.10 hr back. (1)
Similar Topics

Keywords : basic, html, tutorial, made, hope,

  1. Html Basic Tutorial
    <!-- For beginners only --> (9)
  2. HTML Tags
    Ever wondered what a HTML tag was (4)
    Many people that i have met have mentioned HTML to me without really knowing what it really means.
    Because of this i thought that maybe it would be a good idea to compile a tutorial for everyone to
    read. When i listen to people talking about HTML; they never seemed to know what a HTML tag was so
    that is what i will focus on here. ------------------- Some people who use HTML may notice that I
    place the tags below in the order they appear in a document. Most people who use HTML know the tags
    which no HTML document can do without. Those are: = this is the tag which ev....
  3. Quick Html!
    Three of the coolest scripts! (3)
    Table of contents: -Meta -Cursor -Icon -Animated Title Bar (Must see!) META Meta tags is
    one of the most important things you need to know about programming. It truly will help you is more
    ways then you can imagine. First off you may be wondering what a meta tag is. A meta tag is a simple
    few lines of code that you put in the header of your document to describe it. If you do this
    correctly you can get search engines (including Google) to add your website. There are a few things
    you want to keep in mind when your making your meta tags. Make sure that you stay on ....
  4. HTML 102 - Web Design For Beginners
    More Basic HTML Writing (6)
    HTML 102 - Web Design For Beginners More Basic HTML Writing This will be part two of a
    multi-part HTML tutorial. Please don't post advanced HTML replies to this article. This
    tutorial is specifically written for beginning HTML writers. Requirements: Software: Web Browser,
    HTML Editor. Knowledge: HTML 101 - Web Design For Beginners. Skills: Ability to press the
    keys on the keyboard. So you have read and understood HTML 101 - Web Design For Beginners and
    you want to learn more. So far we have talked about a very basic web page. Black on white an....
  5. Good Comments Make Good Html.
    Commenting makes HTML easier to write. (15)
    Good Comments Make Good HTML. Commenting makes HTML easier to write. This is a spin off from
    another article I wrote entitle Good Comments Make Good Scripts. While the code is different, the
    concepts for comment are the same. Enjoy! Disclaimer! This tutorial is intended to be used to
    show the benefites of commenting your HTML in order to write clean, easy to read code. For the
    purpose of this tutorial, HTML, XML, XHTML validating is not taken into consideration. While I will
    make an effort to point out non-standardized code, validation has never been my....
  6. HTML 101 - Web Design For Beginners
    Absolute Basic HTML Writing (7)
    HTML 101 - Web Design For Beginners Absolute Basic HTML Writing This will be part one of a
    multi-part HTML tutorial. Please don't post advanced HTML replies to this article. This
    tutorial is specifically written for beginning HTML writers. Requirements: Software: Web
    Browser, HTML Editor. Skills: Ability to press the keys on the keyboard. Any web browser will
    work as long as it can open files saved on your hard drive. -> Netscape and Internet Explorer are
    both free and easy to use. Any HTML editor will work as long as it is an HTML editor and not a web....
  7. Converting HTML over to XHTML
    Crossing over to the darkside (13)
    Allow for alterations Well, I've just had to convert another HTML 4.01 Transitional website
    over to XHTML (eXtensible HyperText Markup Language) 1.0 Transitional, I will later on convert over
    to XHTML 1.0 Strict as soon as I write the CSS (cascading stylesheet) file for it but it had to be a
    quick update and removing all presentational elements and placing them in a CSS file is not quicker
    than just altering some tags. So this is where I got the idea to write a How to Convert HTML over
    to XHTML . Let's begin I'm having trouble knowing where to start ....

    1. Looking for basic, html, tutorial, made, hope,






*SIMILAR VIDEOS*
Searching Video's for basic, html, tutorial, made, hope,
advertisement




Basic Html Tutorial - Made it myself, hope you like it.



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE