Ric's profileHTML TutorialBlogLists Tools Help

Blog


    March 11

    Basics

     

    Introduction
    Right, so now you have the basics of your website (from the Getting Started section) it time to put something onto your website. I am going to show you how to put text, images, links and a few other basics items onto your site. (Everything in this tutorial is going to be set inbetween your body tags)

     
    Text
    If you want you can just type your text directly between your body tags e.g.:
    <body>
    YOUR TEXT
    </body>
    This just produces the default values for everything (a white background, size 12, Times New Roman font in black) with the words YOUR TEXT. Bit boring really so why not edit your text a bit? Well, as pretty much everything else in HTML it is going to involve tags, put two tags around your text (<font> & </font>). (Whenever you edit something in HTML you will put the editing code in the first tag).
    • Right, lets edit the font style, add face="arial" to your tag e.g. <font face="arial">, changing arial to whatever font you want to use. Please be aware that the fonts that are avaialble on your computer are not available on everyones computer, so keep with major fonts e.g. arial, times new roman, courier, courier new, etc.
    • How about editing the font size? Well, just add size="3" e.g. 3 to whatever font size you want to use e.g. 1, 2, 3, 4, 5.
    • Finally, editing the colour of the font, add color="0000ff" e.g. <font color="0000ff">, changing 0000ff to whatever HEX colour code you want. For a list of HEX colour codes click here, just choose the colour you want and copy and paste the code which goes with it.
    Right, well, thats the basics of editing text, of course, you can combine these three in any <font> tag e.g. <font face="times new roman" size="4" color="ff00ff">.
     

     
    Images
    Right, now, adding an image to your page. To do this involves a tag (but in this case it only requires one tag, just a 'starting tag' (<img>)). Firstly you need to know each image has a file format, the most common types are .jpg, .jpeg, .bmp or .gif, but there are many many other types. To find out the file type of your image you can go to a folder on your computer e.g. My Documents, click on Tools, Folder Options, View, and then click on Hide extensions for know file types to make it unchecked. Then all your files should show their type after them (it will be last few letters after the last . e.g. image1.gif the file type is .gif, image.1.jpeg has a file type of .jpeg. When you have finished finding the file format you can go re-check the 'Hide extensions for know file types' check-box and it will hide them again.
    • Right, lets add an image to your <img> tag. Add src="filename.gif" e.g. <img src="filename.gif">, changing the filename to whatever the name of your image is and changing the gif to whatever the file type your image is.
    • To edit the width of your image add width="100" e.g. <img src="filename.gif" width="100>, changing the 100
    • To edit the height of your image add height="100" e.g. <img src="filename.gif" height="100>, changing the 100
    • When you hover over an image you can make it have a little box appear which gives a brief explination of what the image is (try the image to the right) To add this to your image add alt="Explination" e.g. <img src="filename.gif" alt="Explination>, changing Explination with whatever text you want to pop-up.
    The code for the image to the above left is <img src="extensions.gif" width="33%" alt="Click to zoom in"> (there is also some java involved, but that isnt even thought of at this stage).
     

     
    Links
    To add a link is relativly simple, you just add two link tags around whatever you want to give a link to, the tags are <a> & </a>.
    • Editing the link is simple, you just need to tell the link where to go to, just add href="http://www.link.html" e.g. <a href="http://www.link.html">, changing http://www.link.html to whatever link you want.
    • If you want your link to open in a new page then add this code to your link tag target="_blank" e.g. <a href="link.html" target="_blank">
    When you add a link to an image it will create a border around the image, to get rid of the border just add border="0" to the <img> tags e.g. <img src="filename.gif" border="0">
     

     
    Other
    There is one more little code I think I should include in this tutorial:
    • The <br> tag (there is just a 'starting tag' for this code). This creates a new line on your page.
    One major thing to remember is it is not a good idea to mix tags up e.g. <i><b><u>TEXT<b><i><u>, it confuses your Internet Explorer if it is done.



    TOP OF PAGE MAIN PAGE SIGN GUESTBOOK
    MSN Alerts | © RIC / KEEPTHECHANGE123

    Getting Started

    Creating The Document
    Okay, so you want to create a website, well, there are a few ways of going about it really, you could use a website builder, get someone to build it for you, or you could produce your own. If the latter sounds like an option you would like to follow then read on:

    Firstly you will need to create a HTML document (this is a file which will store your website, like a Microsoft Word file holds your letter, assignment, etc). I would recommend using good old Notepad, it’s very basic, but does the job just fine. To find the program (using Windows) click on the start button, All Programs, Accessories, Notepad.
     

     
    The Building Blocks
    Once the program is open you will need to type (or copy & paste) your building blocks of HTML. HTML is made up of two parts, a head and a body. The head holds all the information which is not normally seen on your site (e.g. page title, which can be found at the top of your Internet Browser. The body holds the website you can see, for example, this text, its all in the body part of your document. Right, the 'building blocks' I speak of is this code:
    <html>
    <head>
    </head>
    <body>
    </body>
    </html>
    What you can see above is a group of tags. Tags usually consist of a beginning tag (<html> for example) and an ending tag (</html> for example). What tags do is act as a way of telling your Internet Browser where a piece of information starts and ends (adding a / to the tag signifies the end tag). Above you can see there are three sets of tags, one is the head tags, another is the body tags, these both have nothing in yet because were just getting started and finally there are the html tags, what this states is that everything in between <html> and </html> is, well, HTML coding.
     

     
    Saving & Opening The Document
    Right, now you have to save your document, click File, Save As... and select where you want your document to be saved as, when you have found a suitable location type in a file name and then add .html to the end.

    Believe it or not, that’s the basics of HTML, albeit the extreme basics. You can open your file as a webpage (by double clicking on the file you have created) or open it as a notepad document (for editing) by either; opening Notepad, clicking File, Open and opening the file you want, or right clicking on the file and choosing Open With..., then choosing Notepad from the list, or when you have the file open in your Internet Browser click on View, Source and it should open in Notepad. Sorted!



    TOP OF PAGE MAIN PAGE SIGN GUESTBOOK
    MSN Alerts | © RIC / KEEPTHECHANGE123
    December 23

    Hope To Update Soon

    Ok, its been a good few months since I have updated anything I hope to have an update after New Year so check back whenever you have time. Sorry about the delay, and if you have any questions just leave me a comment and I will get back to you as soon as possible.
    October 22

    NEWS

    I am not going to be producing any more HTML tutorials on this site, as you may know I have produced another website (which I can use whatever HTML on I want). All further updates will be put on there first, and possibly added here afterwards. The tutorials you see on this site are old and new ones have been produced (or are being produced) and can be seen on my new site. I may add a new MSN Spaces tutorial whenever I get time, but apart from that the new home of KeepTheChange is http://www.html-tutorial.co.nr.
     
     
     
    October 12

    Back on?

    Right, good news, internet should be back on Monday 17th so I can finally get all my new posts up. Got quite a few for your enjoyment. Mostly re-writes for my new site, but there could be a few new tutorials for my MSN Space. So check back on the 17th if you find the time for the new updates. In the mean-time check out my new site if you want and tell me what you think. Thanks, and sorry again for the delay in updating the site.
     
    October 01

    Still No T'Internet

    Still sorry about the lack of updates, the landlord (whom which I hate) removed our cables from the place I live and so, no intenet for me. I am currently waiting for a re-connection and have moved to a kick-ass 8Mbps ISP so when I get it, expect loads of updates (which are stored on my computer as we speak, just the computer at uni) and whatever other stuff I can think of putting on the site. Should be up-and-running within 2 weeks. I will also try and reply to all comments ASAP.
    September 17

    Lack Of Updates

    Sorry about the lack of updates recently, I have been really busy with university business. Will update hopefully early next week with some new tutorials, some re-writes on the site and whatever else I can think of. Also, let me apologise to all the people who have left me comments, I would of replied sooner, but have only just got around to maintaining my blog.
    September 10

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    September 09

    New Site

    A few days ago I said about a new site I was producing, well, I have been hard at work over the weekend producing a template and finally got it finished! As stated I have begun to re-write my tutorials to allow users of all levels to use them and are hopefully more easier to read in general. It has only got a few pages at the moment but the number will grow over time. If you want to check out the site click here.
    September 08

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    September 05

    A new site?

    Why yes, a new site is on the go. Ive decided to create a website which will allow me to host any file I want, use whatever I want on my site e.g. JavaScripts, CGI, etc. Wont be up and running for some time but I will keep you updated on any news about it. All my tutorials will be re-written for the site to accommodate all user levels.
    September 04

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    September 03

    New Tutorials

    I should have some new tutorials early next week. Busy weekend (not that anyone cares), but there aren't going to be any major updates over the next few days. Oh yeah, also got a new short URL, bit more suitable to the site www.htmltutorial.co.nr, hope it gets used. A little word, I have had reports of people taking my whole tutorials, near enough word for word, I would appreciate a link to my page and some sort of thanks given if you are going to do this (please note I do not expect any thanks for just using my codes for the effects they produce, it is entirely down to you). Anyway, enough of that! Hope you enjoy the site and speak to you all soon!
    August 31

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    August 29

    Add Bookmark

    Add Bookmark

    As you may know you can add bookmarks to websites so you can easily go back to them whenever you want. The most common way of doing this is by clicking Favorites, Add To Favorites..., but there is another way. You could place a link on your site which when clicked on opens a pop-up window allowing your users to add a bookmark easily.

    How To Do The Above

    Right, well if you want to create this function for your website you will need to copy and paste the following code to a text editor e.g. notepad:

    <html>
    <head>
    <title>ADD TO FAVORITES</title>
    </head>
    <body>
    <font face=arial><center>ADD TO FAVORITES</center></font>
    <SCRIPT LANGUAGE="JavaScript">
    var link = "http://spaces.msn.com/members/keepthechange123";
    var title = "HTML Tutorial";
    function fav()
    {
    if(document.all)
    window.external.AddFavorite(link,title)
    }
    fav();
    </SCRIPT>
    <SCRIPT LANGUAGE="JavaScript">
    function exit()
    {
    if(document.all)
    window.close();
    }
    exit();
    </SCRIPT>
    </body>
    </html>

    Editing The Code

    Once you have the code in a text document you will need to save this as a .html file e.g. addbookmark.html, changing the addbookmark to whatever you want.

    Now just change http://spaces.msn.com/members/keepthechange123 to whatever the link of your MSN Space is. And change HTML Tutorial to whatever you want your page to be called in your users bookmarks.

    You will then need to upload this file to an online space, I use 50 Webs. Once you have uploaded the file you will need to create a link to the file on your website, to do this just put this code onto your site:

    <a href="linktobookmark.html" target="_blank">Add Bookmark</a>

    Changing linktobookmark.html to whatever URL your uploaded file is, and changing Add Bookmark to whatever you want your page to display as a link.

    Thats it! You should now have a link that will allow your users to add a bookmark to their page. For an example CLICK HERE.

     


     

    MSN Alerts | © RIC-KEEPTHECHANGE123

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    August 28

    RSS

    What Is A RSS?

    A RSS is a file which contains things like stories or several seperate pieces of information. An example is a news website, they may use a RSS to store their stories so other people can use programs to read these stories. A RSS is built up of simple text, it is divided up into the seperate pieces of information, this information consists normally of a title, description and a link. Below is an example.

    New HTML Tutorial

    Today there will be new tutorials


    What you can see about is one piece of information which is built up of a title (New HTML Tutorial), a description (Today there will be new tutorials) and a link (http://spaces.msn.com/members/keepthechange).

    The main use of RSS files is the ability to read these files with programs designed to do such procedures e.g. RSS Feeds Toolbar. Your MSN Spaces uses RSS feeds (see the bottom of your page for a , click on it and you will see your RSS feed). In one of my tutorials (Your Own IE Toolbar) you can use RSS feeds, this is a useful time to make your own RSS file.

    The Coding

    Firstly you need to state that the file you are making is a RSS file. You will need the code:
    <?xml version="1.0" ?>
    <rss version="2.0">
    <channel>

    </channel>
    </rss>

    Right, now save your file as filename.xml, changing filename to whatever you want.

    OK, so now you need to create some items. An item is an individual piece of information (title, description & link). To do this use this code:

    <item>
    </item>

    Inside these tags you will need to add:

    <title>
    </title>
    With your title inbetween the two tags e.g.

    <title>
    My Title </title>

    You also need the description:
    <description>
    </description>

    With the description between the two tags e.g.

    <description>
    The description of my item. </description>

    Finally (if you want) you can add a link which will take you to a webpage when the item is clicked on, you will need the code:
    <link>
    </link>

    With the full URL inbetween the tags e.g.
    <link>
    http://spaces.msn.com/members/keepthechange123 </link>

    And thats it! Below is an example RSS file:

    <?xml version="1.0" ?>
    <rss version="2.0">
    <channel>

    <item>
    <title>keepthechange123 - HTML Tutorial's Home Page</title>
    <description>For the main page on my HTML Tutorial click here!</description>
    <link>http://spaces.msn.com/members/keepthech ange123/</link>
    </item>

    <item>
    <title>keepthechange123 - HTML Tutorial's Other Page</title>
    <description>For the other page on my HTML Tutorial click here!</description>
    <link>http://spaces.msn.com/members/keepthech ange123/</link>
    </item>

    </channel>
    </rss>

    You can put in as many items as you want, but I wouldnt recommend more than 10.

    Uploading The File

    Now save the file. You will now need to upload the file. I use 50 Webs, but you can use whatever online space you want. When your file is uploaded you can use the link of the file for whatever RSS feed link you want.

     


     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    August 23

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123
    August 22

    Bookmark Testing

    I am looking at a way to add a bookmark with a link, now, as MSN has banned Java Scripts I am looking at an external link. The link is HERE, click it if you want to test it, and if you would be good enough to leave a comment if it doesnt work it would be much appreciated! Just so you know, it should open a new window, as you if you want to add my site to your favorites (you don't have to click yes), and when you choose yes or no it automatically closes the window). If I don't have any problems by a few days I will add a tutorial. I am also working on a RSS tutorial as we speak, so that should be online soon!
    August 21

    Today

    Hi, welcome to my HTML Tutorial Page.
     

     

    Listed on BlogShares

    Want to see what my blogs worth in virtual shares? Then click the above link.

     


     
    What do you think of my site?

     

     
    Site workings: To the left there is a navigation bar, just click on what you want and by the power of digital magic, you will be taken there.
     
    News: Beginner section finished now! Have a look through, Ive been doing HTML for a good few years now and from researching it I still learnt a fair bit more, so even if your an expert it could be worth a look. Just finished producing an Appendix, which explains various word meanings. Added a few MSN Spaces tutorials as well as some HTML generators. I moved all my images again after I learnt my online space was playing up a little too much, anyway, they are now hosted on MSN, so, if you can access my space you should be able to access my pictures.
     
    A final word: If you have anything to say about the site, my generators, or anything else, feel free to leave a comment (click HERE for the comments page), I appreciate all feedback and will read and reply (if possible) to everything. Also if there is something specific you want to see, just give me a shout and I will do my best to get it on the site ASAP.
     
    That's about it for today, have fun 'HTMLing'
     

     
    I HAVE HAD SOME COMMENTS ABOUT HTML NOT WORKING ON THEIR WEBSITE. I, STUPIDLY, DID NOT POST HOW TO PUT HTML ONTO YOUR MSN SPACES, WHICH I MUST APOLOGISE ABOUT. WHEN YOU CREATE A NEW BLOG YOU WILL SEE THERE IS A BAR AT THE TOP, THERE IS A BUTTON THERE SAYING <HTML> (see below), YOU MUST CLICK ON THAT AND IT WILL SHOW YOU THE HTML FOR YOUR BLOG. IF YOU THEN TYPE IN YOUR HTML YOU CAN PREVIEW IT BY CLICKING ON THE <HTML> BUTTON.
     

     

     
    If you do use HTML from this website it would be much appreciated if you could put a small reference to me, but this is just a request and entirely up to you.
     


    If you get a moment and like my site then pressing the above button would be much appreciated, it only takes a second and 1 click. Thanks everyone!

     

     
    MSN Alerts | © RIC-KEEPTHECHANGE123