Jul 25, 2008

HTML tags and examples - Condensed form of course from my site...

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials
Pages: 1, 2, 3, 4

free web hosting

HTML tags and examples - Condensed form of course from my site...

GM-University
Well, I decided to try and help out some of the users here who might be unexperienced in HTML, so I condensed the begginer's HTML course at my website. Here it is...

Lesson 1
HTML means Hyper Text Markup Language. HTML is a very common language used for many websites, is the base for more complicated and powerful langauges like php, HTML can seem hard, but you will find it is one of the easiest langauges one can learn. The core of HTML is the tag, a tage is just a set of two arrows-like brackets created by hitting Shift and the comma key, or Shift and the period key. They look like this...
HTML
<

HTML
>

Tags start a change in the way a webpage looks with your basic starting tag, something like the bold tag which is like this
HTML
<b>
the text we want to be in bold would go after the <b>, but it will spread to the end of the page if we don't end the tag, to end a tag you begin the same tag you began with, but instead start it with a </, so the tag to end the bold effect would be
HTML
</b>


Lesson 2
In this lesson we will learn about some basic tags to change the way a body of text looks. We will start with a few of the most common tags.
We will begin with bold look at this sample and examine how the effectg is created (the word Text Here Will be what you want in bold)
HTML
<b>Text Here</b>
Simple right?
Ok, next we will learn how to make a break, which is the same as doing this...
A break is the equivilant to hitting enter, it is created like this
HTML
<br>
Simple right?
Ok, now you may wonder "how can I make an indent (or have a tab key effect) at the next line?" well, this is just as simple as the last tag, here is a indenting tag
HTML
<p>

Ok, now onto Italics italics are done in the same way as bolding text, we just change the b in <b> and </b> to an i like this
HTML
<i>Text Here</i>
Really simple huh? smile.gif
Now, you are saying to yourself, "what do I do when the time comes where I need to underline my text?" well, we have the same job as we did with the italics, we just have to change those i's to u's like so
HTML
<u>Text Here</u>


Another thing we should consider doing is changing the size of our text, so we can make things stand out even more on our page. Here is how we do this, we need to define a size within our staring tag this time, but don't worry, it's very easy! biggrin.gif look at this
HTML
<font size="1">Text Here</font>
Now it would be very bland and hard to read webpages if all we could use is size 1, so the creators of HTML gave us 7 sizes we could use, so where you se the "1" in our code we can instead use "2", "3", "4", "5", "6", or "7".

Lesson 3
Ok, now we are going to learn to add some cool things to our page.
Ok, we will start with the bullet, the bullet is a bit more compliated than what we have done so far, take a look here (<ul> begins the bullet series, </ul> ends it, and <li> creates an actual bullet)
HTML
<ul>
<li>Our First Bullet
<li>Our Second Bullet
<li>Our Third Bullet
</ul>
Notice how I hit enter after each bullet and after my starting tag, this is nessary or our bullets might not work in all browsers, some will work though...
"Now, how can we create a numbered list?" you are thinking it works the same way as a bullet, with different letters in the starting and ending tags, take a look
HTML
<ol>
<li>First number item
<li>Second number item
<li>Third number item
</ol>[html]
Do you know what start our list, and what tag ends it? if you guessed the <ol> tag began it, and the </ol> ended it you are right.
But don't worry, if you want to use more than 3 items, or less in your lists feel free to, just add another <li> tag after the last one you used, or get rid of some <li> tags, just make sure they stay after your starting tag, and before your ending tag, and make sure you hit enter aft each one... :D
Now we will add a divide, or horizontal rule. The code is simple like creating an indent, or creating a break, here is the code [html]<hr>

Now we can also change the width, so it doesn't cover the whole page, we can do two things to create this, the first is by defining the size in pixels we want, the code is (Pixel Size should be replaced with the actual number)
HTML
<hr width=Pixel Size>
Another way we can do this is by entering the percentage of the page thw divide should cover, like so (replace percentage with the percentage, make sure to add the percent sign directly after the number...)
HTML
<hr width=percentage%>

We can also make the divide thicker like so... (pixels should be replaced with the pixel size in numbers)
HTML
<hr size=pixels>[html]
If we put our divide on a website it will be shaded in, if we want to remove this we must enter [html]<hr noshade>

Now, "What if we want to combine these effects?" you ask? well, this is simple, we add all of the variable into our taghere is an example of a tag with all three effects (remove any not wanted) [hmtl]<hr noshade width=Pixels or percentage size=pixels>[/html] The order of the variables doesn't matter by the way.

Lesson 4
Now we need to make our page more lively and less bland, so we will learn to add color now... Here is the code for changing color using hex codes (you would replace the hex with the actual hex code),
HTML
<font color="hex">Text Here</font>
Make sure to put the hex code in quotes.
Here are a few basic hex codes:
Red = FF0000
Purple = CC00CC
Blue= 0000FF
Green= 00FF66
Yellow= FFFF00
Black= 000000
White= FFFFFF
Now, we can also use the actual names of basic colors, like so (replace NC with the name of the color)
HTML
<font color="NC">Text Here</font>
Make sure you put the name of the BASIC color in quotes.
Ok, now we want to give our site a nice backround color right? ok, well here's the hex code version (remember to swap hex for the actual hex code)
HTML
<body bgcolor="hex">
Remember to put the hex code in quotes!
Now, here is the version for basic colors using the name (replace NC with the actual name...),
HTML
<body bgcolor="NC">
Rember to put your quotes... smile.gif

Lesson 5
One of the last lessons we will learn is on insterting pistures and backround images.
This is quite simple, but a good skill to have, ok here is the code to insert a picture (replace the words url with the actual url of the image)
HTML
<img src="url">
Remember to put the url in quotes! smile.gif
Ok, we can also add a border which is like a little picture frame, here is the code (replace url with the image url, and number with the border size 0-2)
HTML
<img src="url" border="number">
remember to put qoute around both the image's url, and the border size, speaking of border sizes, 0 will create no border (the same as not using the tag at all...) 1 will make a thin border, and 2 will create a thick border.
To display a backround image (it will be tiled...) you can use this code (replace url with the image location)
HTML
<body background="url">
rember to put the quotes around the image url.

Lesson 6 (last lesson) Refining but Not Confining

Ok, as our last lesson we will learn to place text somewhere else on the page, and how to link to another page...
Ok, to align text or an image to the left we must enter this (put the code for your image or text where it says image/text)
HTML
<div align=left>image/text</div>

To make the text/image centered on the page we must switch the part that says
align=left to align=center and to align it to the right we must use align=right where the align=left was. Now we will create a text link, here is the code (put the url of the page you want to link to where it says url, and the ocde for the text you want displayed where it says Text Here)
HTML
<a href="url">Text Here</a>
remember to put quotes around the url.
Now, we the last thing we will learn is creating a linking image, this is quite simple, all you need to do is replace the code for your text with the code for your image.

Wrap-Up

Ok, well you've learned a lot to day, I hoped you understood everything, if you have a question just ask in this topic, or PM me. I will post another little course when I finish HTML Novice, it will cover tables, some basic CSS and all that junk.

The best way to get a nice looking page is by combining effects, use the alignments to get things precisely where you wnat them! biggrin.gif

~GM

whyme says: fixed your bbcode wink.gif

 

 

 


Reply

whyme
an excellent tutorial for html beginners. smile.gif

Reply

GM-University
Thanks, I messed up some of my BB Code in the third lesson whith creating numbered lists.

Reply

scab_dog
Cool HTML Lessons, would have taken a long time typing it up!! wink.gif

Reply

whyme
i fixed up the bbcode smile.gif

Reply

nickmealey
nice tutorial for begginers

Reply

GM-University
QUOTE(whyme @ Mar 19 2005, 07:56 PM)
i fixed up the bbcode smile.gif
*


Thank you Whyme! biggrin.gif

Reply

Seņor Maniac
Yes an excellent tool for beginners. I give it a 10/10. It is also helpful to some people here who know html to freshen up on it. Good job keep up the work.

Reply

Dragonfly
A very descriptive tutorial for beginners. You must have struggled to put up each and every line. Next week you may add TABLE and FORM.

However I really doubt if beginners will come to this site.

Reply

mahesh2k
Nice HTML tutorial and it ios good for beginers 100% cool
keep posting such good posts.why dont you put these tuts on your site i will spread the URL arround the web.
smile.gif Hands Up man keep it up.

Reply

Latest Entries

seez
WOW!!!! Thanks!!! I really appreciate that! That's excellent for beginners like me.... I know HTML but not alot so thank you.... nice of you to help us out. That must have taken alot of time. Thank you

Reply

Imtay22
really Great for beginners! I could have used this a couple months when I was first Learning HTML. Weird thing was, I learned HTML and JavaScript at the some time. I got mixed up with the onMouseOver event. I kept thinking it was a HTML tag. BAD way to learn HTML. Start off with one language, I would recommend.

Reply

Blessed
thanx for the tutorials man
this helps me a lot with my html skill laugh.gif laugh.gif

Reply

Casino.Royale
This is a nice tutorial, I'm sure it will diffently help everyone new to coding and teach them the tags as I'm sure and as evident that, thats what this tutorial was made for, lol. >.< Anyways, nice tutorial.

Reply

jlhaslip
Here you are, a whole new section about Cascading Style Sheets and some information in that section will improve your HTML coding.
The two go hand-in-hand. Everything you learn about one will assist you in using the other to make better Web pages and sites.

Cascading Style Sheet Sub-forum

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.
Confirm Code:

Pages: 1, 2, 3, 4
Similar Topics

Keywords : html tags examples condensed site

  1. Add Flashing Inbox To Invisionfree Forum - Html code for invsiionfree!! (0)
  2. Php Word Filter - Have you accidently sworn on your site? Or do you want to keep visitor (7)
    This is pretty simple but very useful if you don't want people to swear. We will be using
    str_replace for this. CODE <?php str_replace ("curseword,
    "replacemet"); ?> Thats pretty simple, just fill in the curse word and the
    replacement, and then repeat... heres what it would look like full size: CODE <?php
    str_replace("swear", "replacement"); str_replace("swear",
    "replacement"); str_replace("swear", "replacement");
    str_replace("swear", "...
  3. Php Quiz Script - Make quizzes for your site. (20)
    Hello all, A little bit back I decided to make a quiz scriptjust out of no where lol. However it
    doesnt do anything special but I am going to make an email mod for it so that it will email results
    to your email address. So here is the basis of it. INSTRUCTIONS: Open a new page in your text
    editor and paste in the following code. CODE <?php $qid = "Quiz ID-00"; ?>
    <html> <head> <title><? echo "Gamers Pub $qid";
    ?></title> </head> <body> <p><h3><? echo "...
  4. How To Make An Ultimate Game List. - If you're making a site on video games or such. (0)
    Hello. I am BuBBaG. You can call me Bubba for short. I'm going to show you how to make an
    Ultimate Game List. First off, we need to make a database, we are going to call this database
    `my_db`, leave out the `'s. Inside that database we will need to create a table
    called `ugl'(Ultimate Game List, duh). To make the table, simply enter this in the Syntax.
    CODE CREATE TABLE ugl ( System char(50), Game char(50), ) In the
    above code, it is stating we are creating a table called ugl, with two columns, System, and Gam...
  5. Create A Google Seach Result Page Embed Within Your Site Page. - (12)
    Create a google seach result page embed within your site page. It is easier to create
    web page that embeded the google search result in it. The first step is to go to google apply an
    account for the google ad-sense. After that login to you account and choose the create ad-seach
    option. Most of time the google search box give all we have the great and powerfull seach ability.
    But, have you think every time users get seach with it. They do redirected to another page that is
    not within you site. It is easier to create web page that embeded the google sea...
  6. How To: Make A Simple Php Site - Making one file show up on all pages using php (21)
    I have looked all over the site and could not find anything that was like this simple, or just like
    this at all.. For some people i know that you are using a basic HTML site...and having a big menu
    if you want to add somthing you have to go into every one of the pages and add or remove or edit
    what you want to do, but with somthing verry simple all you would have to do is edit one file, and
    all of the pages that have the PHP script on them would suddenly change to what that one file is.
    So to start off if you are planning on using this little tirck, the page that you a...
  7. Css And Javascript Combined For Dynamic Layout - use of different CSS files at same site (9)
    This tutorial is meant for people that are dealing with problems while coding their site at 100% of
    width. Important notice: Some people has JavaScript disabled, so they will not be able to load CSS
    file (take this in account when creating your website). How this script works. In the HEAD of your
    HTML document will apply this command, so variable.js file will be load at start: CODE
    <script type="text/javascript" src="variable.js"></script> In
    browser JavaScript file variable.js is loaded. This Javascript file consist of this para...
  8. How To Put A Phpbb Login Box On Your Main Site. - Code and .php included!!! (18)
    I have included my coded file with this... Ok here is the code. CODE // //Create login area,
    replace the phpBB2 in /phpBB2/login.php with your forum's //directory // <form
    action="/phpBB2/login.php" method="post" target="_top"> <table
    width="25%" cellspacing="2" cellpadding="2" border="0"
    align="center">  <tr> <td align="left"
    class="nav"><a href="/phpBB2/index.php" class="nav">Prank Place
    Forum Index</a></td>...
  9. How To: Html Tables. - I find these really useful. (8)
    If you are a novice web designer, but want your site to look advanced and proffessional, then what
    better way to do so than to use HTML tables? HTML tables are a really easy way of formatting your
    text, to make your ste look proffesional. It looks good, and its easy, what more can you ask for?
    You have to use the tag, so first lets start off with: HTML Table > /table > In
    between theese two tags, we will add the data for the table, using the tags and . =Table
    Heading (Title) =Table Data (what you want in the table) =table row (new row) So, lets ...
  10. Simple Stylesheet Tutorial - Stylesheet embedded in your site. (2)
    Hi - ill show you how to make a simple style sheet that will be embedded into your site. OK make
    sure your site is set up already (like the standard tags) To start and end off a stylesheet you
    need to do the following CODE <style type="text/css"> </stlye> Ok
    lets start CODE <style type="text/css"> p { font-family: "Tahoma";
    font-size: 9; color: "red"; } </style> So when you come to put in
    CODE <p>Hi!</p> The text will appear red and will be in Tahom...
  11. How To Make A Very Simple Wap Site - A quick tutorial about WML language (40)
    WAP Site Tutorial : How to Make A Wap site? Before We begin.. Defination from the
    Web about Wap. QUOTE WAP is an open international standard for applications that use
    wireless communication . Its principal application is to enable access to the Internet from a
    mobile phone or PDA .A WAP browser provides all of the basic services of a computer based web
    browser but simplified to operate within the restrictions of a mobile phone. WAP is now the
    protocol used for the majority of the world's mobile internet sites, known as WAP sites ...
  12. Creating Navigation For Html Websites - Have a common navigation menu for the whole website! (12)
    Pre-requisite: HTML, inline frame tags 1 Attachment(.zip) included. Updates : 29-12-07: Doctype
    added in example files (Advised by jlhaslip) Designing a whole website takes a lot of planning
    and organization. Designing a proper navigation system is a basic step in building your website. If
    you are developing webpages in html you would have observed that as you go on creating pages it
    becomes difficult to maintain the links to the pages. This article will guide you in developing a
    common navigation menu for your website. It describes three ways, so if you don'...
  13. Simple Scripts In Html And Javascript - Things like BackgroundColorChanger and so (7)
    like in the topic, here is a description how to change the Backgroundcolor "On The Fly", by klicking
    on a button or radio-box first, we ned the html-and body-tags, create a new html-file on your
    desktop and write the following: QUOTE <script language = "JAVASCRIPT">
    browser interpretation: html - tag means "hey, browser, here comes HTML" in the body-tag you define
    the looking of your site. you can add things like "bgcolor" for the background, "text" for the
    textcolor and link / alink / hlink / vlink to define the linkcolor ( ) the scripttag i...
  14. [php] Clean Code Functions - Clean up your html output from php scripts (5)
    There is another Topic about writing 'clean' HTML code posted elsewhere on the Forum.
    I'll edit this Topic and add the link so you can review it on your own, and there is no need for
    me to comment on it in this thread, but the purpose of this Topic is to introduce a pair of
    functions which can be used for making sure that the HTML output from my scripts is readable when a
    view-source is reviewed. Two handy functions are included here. They work together quite nicely,
    and I will start this Tutorial with a short summary of the reasons for their 'being...
  15. Phpbb Forum Site Transfer - How to do it, step by step instructions (20)
    I'm sure many of you out there have used phpBB at some point. To those who enjoy running forums
    and online communities, specifically supporting phpBB, I am about to tell everyone how to restore
    the forums database from one website, to another. This is presuming you do not have any mods or
    hacks installed. Some of you may find this information useful. Here is the scenario: Let's say
    you have forums running phpBB version 2.0.17 (currently the latest one). You have decided that you
    want to move your forums to a whole new URL and provider, and as an added bonus, ch...
  16. Php Emailer/contact System - An email or contact system for your site (20)
    Hello all, Here is an easy Emailer or Contact system that allows visitors or members of your site
    to email you just by filling out a form. So here is what you need to do to set it up. First open up
    a new page in your text editor and paste in the following code. CODE <?php $Name =
    $_POST['Name']; $Subject = $_POST['Subject'];
    $Email = $_POST['Email']; $Site =
    $_POST['Site']; $Message=$_POST['Message'];
    $align = $_POST[&#...
  17. Html Legend - Learn how to create a handy legend with HTML! (9)
    I think this is pretty neat... good for those people who maybe aren't that great at designing
    things but still want something to look nice.. CODE <fieldset> <legend>Legend
    title</legend> Content </fieldset> try it in note pad.. it looks nice...good for
    forums, sign up forms......
  18. Checking The Web Site Speed - (10)
    Did you taking too much time to access your favorite sites? Probably the problem is on the server
    used by those sites. To make sure that is the problem, use Windows PING facility. Ping is a small
    program, which sends a 32-bit signal to the Web site server. Next, Ping record the time needed by
    the server to answer it. To activate Ping: Click on the Start-Run menus, type command, and then
    click OK. Type PING "site name" in the MS-DOS prompt window, for example PING www.yahoo.com. In a
    moment, the result will appear on the screen. A result less than 300ms is normal spee...
  19. Cakephp On Ubuntu - using your own public_html folder (0)
    Hi, there are many tutorials about this, but i would like to type the steps i followed in order to
    get cakephp working on my user public_html folder. as many of you probably know, if you have
    apache's userdir module loaded, you can put your web pages on /home/user/public_html , and
    access them with the url: http://localhost/~user/ . I really prefer this, so all my web pages are
    on my personal home, but how to configure cakephp to work with these paths, i got a hard time with
    this, but finally got it!. here's how: in case you don't have apache2's u...
  20. Html Span - (7)
    HTML Span Description The span tag is quite the handy tag to have at your disposal. You can use
    it for everything from Text Formating, to creating a scrollable text area. When combined with CSS it
    becomes an easy-to-use tool for making your website as uniform as possible, as your not bogged down
    with tags for every heading and title on your website. Try It Out CODE <html>
    <body> <div class="content"> <span class="heading1"> Heading
    or title goes here. </span><br><br> All the content insi...
  21. Html Bdo... - (13)
    Description I find that it is often difficult to write a sentence backwards, but thanks to HTML, I
    can now complete this task in only a few seconds. Now the only problem is it is very difficult to
    read... Try It Out Welcome to one of the most useless functions of HTML. The tags enable you to
    write a sentence backwards. The code is quite simple. CODE <bdo dir="rtl">I
    find that it is often difficult to write a sentence backwards, but thanks to HTML, I can now
    complete this task in only a few seconds. Now the only problem is it is very difficult to r...
  22. Want-to-start Html Tutorials - An HTML tutorial that covers the basics (2)
    NOTE: Don't use a rich text editor* for writing HTML code! Use Notepad in Windows,
    SimpleText in Mac or TextEdit in OSX, but you must set the following preferences for the HTML code
    to work! In the Format menu, select Plain Text. Open the preferences window from the Text
    Edit menu, then select "Ignore rich text commands in HTML files." Start Creating Your Own HTML
    File You can either use HTM or HTML file extensions. For more information, visit:
    http://filext.com/file-extension/htm for HTM or http://filext.com/file-extension/html for HT...
  23. How To Set Up A Bookmarking System On Wii - Use your favorite social bookmarking site. (0)
    This is a simple tutorial on a way to set up a bookmarking system on your Wii with greater stroage
    than the Favorites. It is more complicated than the Favorites and requires manual URL typing. Well
    let's dive on in. Items Required Nintendo Wii Internet Channel 3 Empty Favorites Internet
    Connection An account on a social bookmarking site I will be using delicious as an example.
    delicious Ok, if you do not have an account, read on. If you do have an account, go to the
    {account} section. Ok, first you need to register an account. This can be done by clicki...
  24. Create A Simple Html Editor With Php And Javascript - (3)
    Ok, I will teach you how to create a simple HTML editor that runs online with buttons that add HTML
    tags. Before we start: You should have basic knowledge of these languages. HTML/XHTML
    Javascript PHP You will need Ability to use filesystem functions. Chmodding abilities
    Features of Editor Online PHP safe Full HTML support A Few Bad Features Can only create new
    documents or overwrite Fairly unsafe Now we are ready to begin. The PHP Script This will be
    our PHP script that we will use to make the file. Make a file called save.php Here is the...
  25. Spice Up Your Forms - With a bit of CSS and HTML alignment (11)
    Ever wonder how to make those stylish forms you see everywhere? Well now it's your change to
    learn. This short tutorial will show you how to do exactly that. Here is a bit of css to spice
    up the form. I have included comments to explain what classes will change what in the forms.
    CODE <style type='text/css'> .form table { background-color: #187cae; }
    /*The following css class will change the table cells within the .form div */ .form td {
    background-color: #bbe0f4;            padding: 3px;            border: 0px;         ...
  26. Faux Ajax Loading - Css Only - Pretend your site is Ajax based (3)
    Link: http://www.jlhaslip.trap17.com/samples/misc/ajax/index.html Check that out. The first page
    has information and the second and has the actual example of its use with sample CSS code. I find
    that when you visit a site which has a slow server and attempt to view 'large' Image files,
    it is pretty boring to sit and stare at a blank screen, so this little snippet of code can be used
    to give the visitor something to see to indicate that the image is being downloaded. I built a
    small animated gif that sits in the background of the space allocated for the image...
  27. Making The Popular Id Browsing For Your Site. - (17)
    Was just sitting and being bored but then I realized I could show how to create more or less popular
    ?id=page browsing. It's actually really easy. I know two ways how to do it. First one I learned
    was checking the variable and if it's true including the text/file/anything needed and so on. It
    was ok, but sometimes I just couldn't make it work so I switched to switch() function and
    that's what I'm going to show you guys right now. So, I made a test page which contains the
    code needed and here is its source. CODE <!DOCTYPE HTML PUBLIC ...
  28. Templating System Using Php Includes - Building a Dynamic site using Includes and flat-files. (13)
    Php based Templating System http://jlhaslip.trap17.com/template/index.php The Source Code
    for the scripts are included (literally) on the different pages on the Demo, including the Contact /
    Email script. The only page not there yet is the Message Script. Maybe tonight I will upload that.
    This one uses a little bit of query-string checking to confirm that the contents of the page are
    actually available (file_exists())and an allowed page content before serving it up. The
    'allowed page content' is done by checking against a flat-file containing an array...
  29. Do You Want To Use Php Code In Your Html Pages? - Within two minutes you will! (9)
    Whilst searching around for help to setup cutenews blog I came across a way to use php in html pages
    - lo and behold it works! so I thought I'd share it with you all (Unfortunately I can't
    remember the site so I wrote this up a couple of minutes after I did it:) ). This method requires a
    web server with apache installed. So, luckily for us all this covers the whole of Trap17... even
    Qupis /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> Just
    to make the point, this is in no way a difficult task and it doesn't requir...
  30. How To Make A Simple File Based Shoutbox Using Php And Html - (8)
    A simple tut to make a simple shoutbox. Let me jump right in. First of all you need the standard
    equipment for PHP, an IDE like XAMPP and an editor like PHP EDITOR 2OO7. Were going to make a
    simple guestbook using three files, webpage.php, shout.php and shout.txt. Webpage.php can be
    changed to whatver you want, it will be the page on which the guestbok is shown, you could even use
    this code and add it to another php page n your site. Shout.php is the proccessing page and
    shout.txt is where the shouts are stored. Firstly we need to make the visual design of the box....



Looking for html, tags, examples, condensed, form, site

Searching Video's for html, tags, examples, condensed, form, site
Add Flashing
Inbox To
Invisionfree
Forum Html
code for
invsiionfree
!!
Php Word
Filter Have
you
accidently
sworn on
your site?
Or do you
want to keep
visitor
Php Quiz
Script Make
quizzes for
your site.
How To Make
An Ultimate
Game List.
If
you're
making a
site on
video games
or such.
Create A
Google Seach
Result Page
Embed Within
Your Site
Page.
How To: Make
A Simple Php
Site Making
one file
show up on
all pages
using php
Css And
Javascript
Combined For
Dynamic
Layout use
of different
CSS files at
same site
How To Put A
Phpbb Login
Box On Your
Main Site.
Code and
.php
included!
;!!
How To: Html
Tables. I
find these
really
useful.
Simple
Stylesheet
Tutorial
Stylesheet
embedded in
your site.
How To Make
A Very
Simple Wap
Site A quick
tutorial
about WML
language
Creating
Navigation
For Html
Websites
Have a
common
navigation
menu for the
whole
website!
Simple
Scripts In
Html And
Javascript
Things like
BackgroundCo
lorChanger
and so
[php] Clean
Code
Functions
Clean up
your html
output from
php scripts
Phpbb Forum
Site
Transfer How
to do it,
step by step
instructions
Php
Emailer/cont
act System
An email or
contact
system for
your site
Html Legend
Learn how to
create a
handy legend
with
HTML!
Checking The
Web Site
Speed
Cakephp On
Ubuntu using
your own
public_html
folder
Html Span
Html Bdo...
Want-to-star
t Html
Tutorials An
HTML
tutorial
that covers
the basics
How To Set
Up A
Bookmarking
System On
Wii Use your
favorite
social
bookmarking
site.
Create A
Simple Html
Editor With
Php And
Javascript
Spice Up
Your Forms
With a bit
of CSS and
HTML
alignment
Faux Ajax
Loading -
Css Only
Pretend your
site is Ajax
based
Making The
Popular Id
Browsing For
Your Site.
Templating
System Using
Php Includes
Building a
Dynamic site
using
Includes and
flat-files.
Do You Want
To Use Php
Code In Your
Html Pages?
Within two
minutes you
will!
How To Make
A Simple
File Based
Shoutbox
Using Php
And Html
advertisement



HTML tags and examples - Condensed form of course from my site...



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
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