Jul 26, 2008

Creating Navigation For Html Websites - Have a common navigation menu for the whole website!

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

free web hosting

Creating Navigation For Html Websites - Have a common navigation menu for the whole website!

nitish
Pre-requisite: HTML, inline frame <iframe> 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't understand one you can read the other.

Navigation is a link system by which the user moves from one page to other in your website and creating it needs a proper method. When I was a beginner this was the first hurdle encountered by me and none of the books explained this concept clearly, so I thought of writing this article. Consider this simple site structure:

Home

Houses
|
House 1
House 2
House 3

Mortgage Rates
|
Bank 1
Bank 2

In this sample site structure if you provide the links of Home, Houses, Mortgage Rates in every page then the user can go to any of the three pages irrespective of the page he is in. But what if you want to add another page “Agencies”. You have to manually add this link to every page into your website. This can be a nightmare if you have 20 plus pages. Although there are many ways of solving this problem, I am going to explain the simple method.

One great method is to create a menu which is common for the whole website. Hence pages can be added and its link can be added in just one menu to represent in the whole site.

This method uses “Inline Frame”. Note that this is not the regular frame which is created with “frameset” tags. The tag used is <iframe>. The <iframe> container can appear inside the <body> element of the web page. For example

QUOTE
<iframe name="iFrame1" width=200 height=550 src="menu.html" scrolling="auto" frameborder="0">
</iframe>
Put this code where you want the menu to appear in your webpage, I like it in left side of the page. Note that you have to just add this code in to every page of your website for the menu to be displayed in every page.

Now you have to create another page “menu.html” in which you will put all your links. Don't forget to select "Parent Frame" in the link type. For example, to link to page_1.html:

QUOTE
<p><a target="_parent" href="page_1.htm">Page 1</a></p>


You’ve done. Now every page has a consistent navigation menu.

Important Note:
The inline frames width and height should be greater than the menu you create. Otherwise the content inside the inline frame would appear cropped.

Creating inline frames with Microsoft Frontpage:
If you were unable to follow the method above you can do it in Microsoft Frontpage (Even if you can't follow this then download the example zip file).

1) Firstly create the pages of your website.
2) Then for the menu, create a new page and add the names of the pages. Highlight the first name, then right click and select "Hyperlink". In this select the page which should come when a user clicks that name. Also, we want the page to appear on the whole page, not inside the frame. So, select "Target Frame" in the same dialog and choose "Parent Frame" as Target Setting (This is important step).
3) Link all the pages by the above method.

You've done it.

Any doubts are welcome.
Thanks.

 

 

 


Reply

jlhaslip
An interesting approach to the concept of navigating a site, however I have a couple of comments.

I-frames are not the coolest thing in the Web. They don't get indexed, I believe, like a regular div on a page, so that is one stike against them.
Your zip file contents are nice. At least they work to do what you describe, but the pages are missing a Doctype Declaration. Might be a shortcoming of the software you used. Not sure, because I have never used Dreamweaver or Frontpage, so I just don't know how they work.
A Doctype is critical for cross-browser rendering of pages. If you don't know what they are, I suggest you learn about them. w3schools can provide some information about them.

I appreciate that you have a good concept of the method which will make the 'one set of links' work for your site. Have you considered using a different techinique? Like a php scripting and / or a php include?

Reply

Saint_Michael
A small correction content in the iframes do get index not just as much as content not in iframe; iframes are another one of those engima's on the internet. Of course to point out AJAX does this as well when you do the preload in document set up, meaning that instead of of the whole website reloading it loads the page within the element document. Of course php includes follow this enigma as well and from websites who talk about it seems they have no problems as well.

Also I don't remember were I saw this but it seems i nthe world of XHTML doc type is irrelevant, in the sense that people only use doctypes to have their code validated. Regardless if they have a doctype or not have the proper coding in your documents will display correctly, of course thats were quirks mode comes into play and the horror stories behind that, well are true. Of course I think once the the browsers are finally standard compliant across all types of coding I think thats when Doctype would become obsolete.

Now on to the topic at hand, if I last recall iframes have limitation on how they can be styled with CSS, but there are other ways to creating an iframe like nav men, like haslip mention php, others include AJAX navs and using a little javascript to expand a menu. Yeah its obvious what the goal is for creating am Iframe base nav menu and that is cut the time needed to change each page when you have to update the nav menu after putting a new link to your site that is the ultimate goal of all web designers to cut down the time needed to design a website.

 

 

 


Reply

Bruce517
thanks for the tutorial I am pretty new to any coding at all and i am learning html xhtml and javascript all together it is going pretty well ill be sure to use this on my site.

Reply

jlhaslip
QUOTE
people only use doctypes to have their code validated

Nope.
Proper Doctypes tell the Browser which rules to use.
It can tell the Browser to use xhtml, for instance, so your comments are not correct.

Without the correct xhtml Doctype on your page, the Browser would have no clue that you wanted to have the page displayed based on xhtml and with no Doctype, the Browser uses 'Quirks Mode', which is its own version of HTML. Every Browser uses a different set of rules for their own style of Quirks Mode and that is the problem with Cross-Browser designing. While the page is in Quirks Mode, you require a bazillion Hacks to get the page rendering similarly across multiple Browsers. Using a Doctype sets the rules to be the same for all of them.
Having said that, yes, indeed, each Browser does render things differently, even with a common Doctype, but the newest releases of those Browsers are becoming more and more similar in their handling of pages.
Concluding in the comment that says: the best Doctype is the one which matches your style of Coding. If you are aiming for a cross-browser, standard compliant page and have thee skill and patience to code in xhtml Strict, then do so. If you only have the knowledge and skill to code in html 4, then use the Doctype which sets that level.

For example, I have worked at honing my skills, and have a decent understanding of the Box Model, etc, so I am capable of writing xhtml strict BUT, since I do not use the pages in an xml environment, I have lately dropped my Doctype and coding back a notch to HTML Strict.

IMHO.

Reply

nitish
QUOTE(jlhaslip @ Dec 28 2007, 08:37 AM) *
An interesting approach to the concept of navigating a site, however I have a couple of comments.

I-frames are not the coolest thing in the Web. They don't get indexed, I believe, like a regular div on a page, so that is one stike against them.
Your zip file contents are nice. At least they work to do what you describe, but the pages are missing a Doctype Declaration. Might be a shortcoming of the software you used. Not sure, because I have never used Dreamweaver or Frontpage, so I just don't know how they work.
A Doctype is critical for cross-browser rendering of pages. If you don't know what they are, I suggest you learn about them. w3schools can provide some information about them.

I appreciate that you have a good concept of the method which will make the 'one set of links' work for your site. Have you considered using a different techinique? Like a php scripting and / or a php include?


Firstly I take your advise of including Doctype declaration.

Regarding iframes getting not indexed, I don't think so, because the page displayed by clicking links in it will be like any other HTML page with different meta tags and title. I think you are talking about the iframe itslef, that is the links inside iframe not getting indexed. The best solution is to create a SITE MAP. What do you think about this?

I created this article for frustrated HTML developers who are mostly newbies and hence didn't talk about anything other than HTML.

And my thanks for your kind review of my article.

Reply

sonesay
This is where pure HTML only has its limitations. The only other method I can think of that can provide you with a similar effect where you need to update only in one place to update your menus is combining HTML + a server side scripting language. For example PHP and include files.

The concept isnt too difficult and the benifits are no need for iframes, You just create a template and include your navigation in there. Use your template for as many pages as you like and when you update the navigation you only need to do it in one place. In fact the end effect is similar to what you've shown with this example.

I have not worked with iframes at all but your guide is nicely written and easy to understand. I am getting tempted to dl it just to see what it looks like.

edit : I just looked at it and I would say it does its job but iframs and menuts are not that nice looking. I would say its more suited for content then holding a menu. But overall a nice example for us to see. thanks

Reply

csp4.0
QUOTE(jlhaslip @ Dec 29 2007, 03:18 PM) *
Concluding in the comment that says: the best Doctype is the one which matches your style of Coding. If you are aiming for a cross-browser, standard compliant page and have thee skill and patience to code in xhtml Strict, then do so. If you only have the knowledge and skill to code in html 4, then use the Doctype which sets that level.
IMHO.

Dang! I spent all that time learning XHTML Transitional and you tell me XHTML Strict is better? Oh, why! I liked your tutorial and now that you've put those doctypes in it really makes it look a lot more professional. Also, I do agree that iFrames are not the best thing in HTML (I personally prefer divs), and it did run a bit slow when I uploaded it and used my '56k' connection, good review and happy reviewing!

Reply

nitish
QUOTE(sonesay @ Dec 29 2007, 09:57 AM) *
This is where pure HTML only has its limitations. The only other method I can think of that can provide you with a similar effect where you need to update only in one place to update your menus is combining HTML + a server side scripting language. For example PHP and include files.

The concept isnt too difficult and the benifits are no need for iframes, You just create a template and include your navigation in there. Use your template for as many pages as you like and when you update the navigation you only need to do it in one place. In fact the end effect is similar to what you've shown with this example.

I have not worked with iframes at all but your guide is nicely written and easy to understand. I am getting tempted to dl it just to see what it looks like.

edit : I just looked at it and I would say it does its job but iframs and menuts are not that nice looking. I would say its more suited for content then holding a menu. But overall a nice example for us to see. thanks


I agree with your php+scripting language combination. I wrote the article only for HTML newbies who are creating say some 10-15 pages in HTML and want to provide navigation menu for all pages but finding it a herculean task to edit each page for adding another link. I would have also told about scripting language in my tutorial but it needs server side scripting and my idea was not that.

In last para: Why do you feel that iframes are not nice looking. If your telling about that border in the example, you could remove it and make it look as if iframe has not been used at all. OR if you did it on your own and got a scroll bar in the iframe, that too you can remove by making the iframes dimensions bigger.

And thanks for your review and comments.

Reply

sonesay
Just the frames / border looks funny with the nav, makes it look like a nav dosent belong there thats all. This is just looks not a big deal, I didnt know you could remove the fames/borders well I guess iframes is abit better then I thought. This would be practical for people who arnt able to use server side scripting or just starting off. I think from my own experience I had the same issue with the navigation spread across all the pages. I only just recently moved on to php and include methods so yeah this is definitely something anyone building pages should be fimilar with.

keep up the good work biggrin.gif

Reply

Latest Entries

bishoujo
I love to use iframes too, mainly because I can just create one navigation menu for the entire site, and if I need to make changes to the menu again, I will not have to do it for every single page, or worry that I've forgotten to change something on other pages. However, iframes isn't the best structure, as some members have already mentioned above. I think another ideal solution is to use php scripting to enable you to use the same navigation for on all different pages without having to change the html on every page.

Reply

azri92
but i think...this is just a simple navigation....
To me smile.gif

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
Recent Queries:-
  1. creating navigation keys in html - 57.38 hr back. (1)
Similar Topics

Keywords : creating, navigation, html, websites, common, navigation, menu, website

  1. Add Flashing Inbox To Invisionfree Forum
    Html code for invsiionfree!! (0)
  2. How To Download Youtube Videos
    without softwares or websites (23)
    With this how to you'll find out how to download videos from youtube without using any software
    or website. 1. Retrieve the id video from the link (the code after ‘v=’) example:
    http://www.youtube.com/watch?v=muP9eH2p2PI => muP9eH2p2PI 2. In your favourite browser go to
    http://youtube.com/v/{ID video} example: http://youtube.com/v/muP9eH2p2PI 3. Link in the address
    bar will change. Replace ’swf/l.swf’ with ‘get_video’ and press Enter 4.
    Save your file /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="bi....
  3. 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 ....
  4. Getting Started With Mysql
    creating tables and insert data into them. (2)
    Hi in this tutorial you will learn how to create tables and insert items into them. First steps are
    to create the database - go into your cpanel and mysql databases, from there make an account and a
    database and then attach them together with all priviliges, call the database test and the account
    admin, with the pw as pass - or any other password. We need to connect to the database so first in
    your php file (probably named index.php) - this is how to do it. CODE
    mysql_connect("localhost", "admin", "pass") or
    die(mysql_error(&....
  5. [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....
  6. How To Setup A Website After Your Forum
    (3)
    This tutorial is about how to setup a website after you have setup a forum. That means, you have a
    forum, and are wanting to add a website. This tutorial will show you how to create the website in
    your root directory(Example: http://domainname.com) , while your traffic gets redirected to your
    forum while you are creating it, until you're ready for guests to see it. This method is
    opposed to setting it up in another directory, then moving it(particularly more time consuming if
    you're site is PHP based). First of all, you are going to want to setup a redirect ....
  7. 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....
  8. 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....
  9. 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....
  10. 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....
  11. How Can I Create Websites With Free Software?
    A challenge given to me by David of Essex (not David Essex) (16)
    OK I've done it! made a selection of tutorials and programs I'm Going to be making a CD
    with all this on if anyone is interested... So The Challenge! To Find Open Source/Free
    software and build a website with it Flash NO Javascript YES HTML YES PHP YES The Software
    KompoZer in the end its the best! it has ftp WYSIWYG and Raw code editing so its satisfying
    everyone /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />
    FTPcommander is brilliant! GIMP An excellent image editing program and as alw....
  12. 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....
  13. 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.......
  14. Css Scroll Bar Styles
    Change the color of your website scrollbar! (1)
    REQUIREMENTS 1. Must have limited to good knowledge of CSS. 2. Must have limited to good knowlege
    of HTML. THE ELEMENTS First of all, there are 7 different elements of a scrollbar. a) Scrollbar
    Arrow Color /cool.gif" style="vertical-align:middle" emoid="B)" border="0" alt="cool.gif" />
    Scrollbar Darkshadow Color c) Scrollbar Track Color d) Scrollbar Face Color e) Scrollbar Shadow
    Color f) Scrollbar Highlight Color g) Scrollbar 3dlight Color Bassically all that you need to do is
    change the colors like you normally do with any sort of CSS. Therefore, if you want the....
  15. Creating A Resume
    10 Tips For Making A Resume (1)
    I've been working on my Resume for months now. Here is a summary of what I've learned: 1.
    Avoid referring to yourself via 1st person or 3rd person terms. Rather than saying "I started this
    job in" just say "Began job in"... Employers expect Resumes to be professional and avoid reference
    to oneself; and instead speaking in an impersonal tone that presents
    achievements/skills/experience/education without personalization. Avoid words like "I", "my", "he",
    "she", etc. Leave out personal pronouns and only use the action words/verbs. This also includes
    your Ob....
  16. Reducing Windows Vista Start Menu Programs Response Time.
    How to do it. (4)
    If you have been using Microsoft Windows Vista for quite some time, you would have noticed that
    installing a number of programs/softwares into your computer considerably slows down the response
    time of your start menu program folder, sometimes up to one second or more before the programs
    listed in a particular start menu folder is displayed. Worst of all, if you are trying to launch a
    program from you start menu which is within another start menu prrograms folder. Well, I have found
    a way to bypass this very annoying thing in Windows Vista. I have about 98 start menu en....
  17. Making A One Page Does All Website In Phph
    (2)
    Hello and Great Day or Night either one. Have you ever been to a site and seen a index page or any
    page at all control everything such as index.php?do=home&action=logout something similar to the
    above? Well I am going to show you how easy it is to make this all own your own, and only have to
    use one web template or design to make it work. Before we get started you need to go ahead and find
    the web design that you want to use. After you find the site you want to use go ahead and save
    it... and save it like this so we can work together, ok! Note* We are going to ....
  18. Adding Your Website To Google
    How to register with google (20)
    Hi everyone. Hopefully here im going to tell you how to register yourself with the Google search
    engine and get yourself in their results. Ill start the tutorial assuming you already have Meta
    tags or other search engine optimisation techniques in place. This tutorial is solely about
    registering with google. At one time i thought simply using meta tags etcetera would get you listed
    in Google, i then found out that didnt work, so i wondered why, and the fruits of my labour are what
    will go into this tutorial. the first step is to get a google account, this will get y....
  19. Programming In Glut (lesson 4)
    Creating 3D objects (0)
    Lesson 4 of 6. I hope you are enjoying them /laugh.gif" style="vertical-align:middle"
    emoid=":lol:" border="0" alt="laugh.gif" /> . QUOTE Hello, in this tutorial we will be creating
    a 3D pyramid. We are building this tutorial from Lesson 3, but I took out the 2D objects and placed
    a 3D pyramid in there instead. The 3rd axis for drawing can be a litle confusing, but after you get
    the hand of it you'll do fine. Now when you are setting a 3D vertex just remember that the
    camera is on the positive end of the z axis. So things that have a more positive z axis va....
  20. Programming In Glut (lesson 1)
    Creating a windwo (0)
    This is the first of six lessons I am transferring from Astahost for programming in GLUT, and after
    the six I hope to make more, I hope you enjoy. QUOTE Hello, I'm starting a series on how to
    program in OpenGL using the OpenGL Utility Toolkit, a.k.a. GLUT. I chose GLUT because it is quick
    and easy to write, and very easy to learn. In this tutorial I am going to teach you how to create a
    basic window which we will build off of in later tutorials. Throughout the tutorial I will leave
    notes to let you know what each command does, and how you can modify it to fit....
  21. 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;         ....
  22. 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....
  23. 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.....
  24. How To Build A Pure Css Using Online Tools Tutorial (part 4)
    Vertical Nav Menu (0)
    Step 4 Vertical Nav Menu The next step is to add in a basic rollover menu so I bring you to the
    following online tool: Menu Generator Now with this online tool you can not only create
    vertical but also horizontal rollover menus. Since we will be doing a Verticle menu we will keep it
    on that option. Now the next part is deciding if we want it fixed, relative, or absolute. If we
    have learned anything it is insane trying to make a absolute or fixed position work perfectly for
    all three browsers (IE, FF, Opera). So to keep our minds sane we will use relative,....
  25. 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....
  26. Creating A Timer Program
    Using Visual Basic 2005 (8)
    This tutorial will explain how to create a basic timer using Visual Basic Express 2005. If you
    don't have it, it's free and you can dowload it from Microsoft's website. All you need
    is a few minutes to sit down and read this and a version of Visual Basic. OK, so what will this
    timer actually do? Well, you are able to enter a number of minutes and a message, and then click a
    button. Once the timer is up, your message pops up and you are reminded! So, basically it's
    a little reminder system. I use it to remind me when TV programmes start, when I have to....
  27. Delete Files And Directories Using Php
    following up from creating and writing (7)
    How To Delete Files and Directories follow up from creating them Hello all and
    welcome to my second tutorial involving file management. In my previous tutorial , I explained how
    to create, write and read files. In this tutorial I'll explain how to remove the files and
    directories you took so long to create. I did not explain last time how to create directories as I
    did not know, now I do, you can use the mkdir() function. Now with this tutorial.... Removing
    Files Removing files can easily be done with the unlink() function: CODE <? un....
  28. How To: Change Your Website's Index File
    a simple trick using .htaccess (18)
    How To: Change Your Website's Index File a simple trick using the .htaccess file A simple
    tutorial which only involves editing one little file. Useful for those of us who have mime-typed
    extensions or who are creating lots of test design files and want an easy way to make the design
    they like best their default file. Create a file called .htaccess in the /public_html/ folder if
    you don't have it. I think one should be there already when you get your site so if it isn't
    you should create it anyway! In the file write the following: CODE Di....
  29. Creating Your Own Icon
    (23)
    It is easy to create your own icon, just pick a bitmap (.bmp) file and change its extension to .ico.
    To do so, open the Windows Explorer, click on the View menu (or Tools in WinMe), click Folder
    Options, click View tab, remove the check on the "Hide file extensions for known files types"
    option, and then click OK. Select a bitmap file, press F2 key, and then change its extension to
    .ico. Have fun learning:)....
  30. HTML tags and examples
    Condensed form of course from my site... (37)
    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....

    1. Looking for creating, navigation, html, websites, common, navigation, menu, website

Searching Video's for creating, navigation, html, websites, common, navigation, menu, website
Similar
Add Flashing
Inbox To
Invisionfree
Forum - Html
code for
invsiionfree
!!
How To
Download
Youtube
Videos -
without
softwares or
websites
How To: Html
Tables. - I
find these
really
useful.
Getting
Started With
Mysql -
creating
tables and
insert data
into them.
[php] Clean
Code
Functions -
Clean up
your html
output from
php scripts
How To Setup
A Website
After Your
Forum
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 Can I
Create
Websites
With Free
Software? -
A challenge
given to me
by David of
Essex (not
David Essex)
Create A
Simple Html
Editor With
Php And
Javascript
Html Legend
- Learn how
to create a
handy legend
with
HTML!
Css Scroll
Bar Styles -
Change the
color of
your website
scrollbar
3;
Creating A
Resume - 10
Tips For
Making A
Resume
Reducing
Windows
Vista Start
Menu
Programs
Response
Time. - How
to do it.
Making A One
Page Does
All Website
In Phph
Adding Your
Website To
Google - How
to register
with google
Programming
In Glut
(lesson 4) -
Creating 3D
objects
Programming
In Glut
(lesson 1) -
Creating a
windwo
Spice Up
Your Forms -
With a bit
of CSS and
HTML
alignment
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
How To Build
A Pure Css
Using Online
Tools
Tutorial
(part 4) -
Vertical Nav
Menu
Simple
Scripts In
Html And
Javascript -
Things like
BackgroundCo
lorChanger
and so
Creating A
Timer
Program -
Using Visual
Basic 2005
Delete Files
And
Directories
Using Php -
following up
from
creating and
writing
How To:
Change Your
Website'
s Index File
- a simple
trick using
.htaccess
Creating
Your Own
Icon
HTML tags
and examples
- Condensed
form of
course from
my site...
advertisement



Creating Navigation For Html Websites - Have a common navigation menu for the whole website!



 

 

 

 

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