Basic HTML Tutorial

Pages: 1, 2
free web hosting

Latest Entry: (Post #17) by Crazy Photon on Feb 22 2005, 04:47 PM. (Line Breaks Removed)
Unordered lists: CODE<ul>    <li>Element    <li>Element    <li>Element</ul> Ordered lists: CODE<ol>    <li>Element    <li>Element    <li>Element</ol>
Express your Opinion! Contribute Knowledge.

Free Web Hosting, No Ads > Have your say > General Talk

Basic HTML Tutorial

Fatal-Fatality
Here is some basic HTML... I will give an example doc first, and then break it down. Also, will give some extras that could make your page fun and interesting!

Example Doc:
CODE
<HTML>

<title>Page Title</title>

<BODY> <body bgcolor=background color><body text=Main Text>

<center><h1>Title Of Article</h1></center><br>

Text....

</BODY>

</HTML>



This will generate something like this:
Title Of Article(This Centered)
Text.....

Here are some basic tags:

Font Color:
CODE
<font color=color or hex>WORD OR SENTENCE(S)</font>

Font Size:
CODE
<font size=1-7>WORD OR SENTENCE(S)</font>

Font Color and Size:
CODE
<font color=color or hex><font size=1-7>WORD OR SENTENCE(S)</font></font>

Scrolling Text: (From Right to Left)
CODE
<marquee>WORD OR SENTENCE(S)</marquee>

Insert Image:
CODE
<img src="http://LINK.COM/DIR/IMAGEFILE.EXT">

Link:
CODE
<a href="http://LINK.COM/">LINK TEXT OR LINK AGAIN</a>

Image Link:
CODE
<a href="http://LINK.COM/"><img src="http://LINK.COM/DIR/IMAGEFILE.EXT"></a>

Audio Embed:
CODE
<embed src="http://LINK.COM/DIR/FILE.EXT" hidden="true/false" loop="true/false/# of times" autostart="true/false">

Video Embed:
CODE
<embed src="http://LINK.COM/DIR/FILE.EXT">

Crossout Text:
CODE
<strike>TEXT</strike>


A Template to edit:
CODE
<HTML>

<title>Page Title</title>

<BODY><body bgcolor=black><body text=red>

<center><h1>Page Template</h1</center><br>

<font color=blue><font size=4>Welcome, here is a template anyone can make, this was designed for <strike>dummies</strike> new Webmasters wanting to learn HTML!</font></font><font color=green> Have Fun, and Good Luck!</font><br><br>-Thanks<br><br>-Fatal-Fatality

</BODY>

</HTML>

If I forgot anything, let me know!

(sticky by whizz)

 

 

 


Reply

SSR
That kindda helps with special effects on your html website, but i need html instaltion tutorials i ahvent found any yet that i know what their talking about. Every tutorial website gives genral stuff never step by step stuf they say do this and that, they dont tel you where to do it. but thanks for the tutorials they will help on my website i wil be sure to check back here when i get my site running i found alot of useful ones. thanks again.

edited: oh this is a poll? i voted yet even though i knew some of them, and knew how to like use al of them, but the way i kenw how to do it wasnt as fast as using these html scripts.

Reply

Meeko
I know most of this stuff, but a few things helped me out, thanks man. biggrin.gif

If you don't mind, I'd like to contribute.


QUOTE
CODE
<font color=color or hex>WORD OR SENTENCE(S)</font>


You can find hex color codes here. http://www.december.com/html/spec/color.html

Reply

Fatal-Fatality
No problem, like I said, if you can add anything, please do, and good luck in your further HTML, PHP, etc. scripting!

-Fatal-Fatality

Reply

Winbots
ok, im going to approach this abit different. im going to give you a step by step tutorial on how to make a simple webpage:


first things first, every html tag is enclosed in

every tag must be closed before a parent tag is closed. ex:
CODE


<HTML><BODY></HTML></BODY>  (INCORRECT)


it should be:
CODE


<HTML><BODY></BODY></HTML>  (CORRECT)



every webpage should be enclosed in the HTML tag, so:
CODE


<HTML>



</HTML>



the invisible part of the webpage should be enclosed in the HEAD tag, the most common tag that goes inside the HEAD tag is the TITLE tag which is what is displayed in the browser bar, so:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

</HTML>



the part that you see should be enclosed in the BODY tag, and any text in the BODY tag will appear as text, so:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY>

This is my very cool web page!

</BODY>

</HTML>



BUT I WANT MY BACKGROUND TO BE BLACK!!!
well then you will do the following:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

This is my very cool web page!

</BODY>

</HTML>



GRR! NOW I CANT SEE MY TEXT!
your text is black too! smile.gif
Well I want it white...
ok, then add the FONT tag with the COLOR set to white smile.gif:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

<FONT COLOR="white">

This is my very cool web page!

</FONT>

</BODY>

</HTML>



ok that's better smile.gif
I want the text 'This is my very cool web page!' to be big like a header

then use a H# tag where # is the header number from 1 to 6, where 1 is biggest and 6 is smallest. like such:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

<FONT COLOR="white">

<H1>This is my very cool web page!</H1>

</FONT>

</BODY>

</HTML>



What about a line across the page?
use the HR tag, like:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

<FONT COLOR="white">

<H1>This is my very cool web page!</H1>

<HR>

</FONT>

</BODY>

</HTML>



now i want a link!
ok... use the A tag with HREF set to the link you want it to go to... like such:
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

<FONT COLOR="white">

<H1>This is my very cool web page!</H1>

<HR>

<A HREF="http://winbots.org/">my other very cool website!</A>

</FONT>

</BODY>

</HTML>



now i want a new line
use the BR tag where ever you want a newline (note hitting enter will NOT start a new line):
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

<FONT COLOR="white">

<H1>This is my very cool web page!</H1>

<HR>

<A HREF="http://winbots.org/">my other very cool website!</A><BR>

my other cool text..<BR>

and my other line...

</FONT>

</BODY>

</HTML>



now i want to do just one more thing... i want a link to my email
ok it works like a reguler link except instead of http://www.mydomain.com, you do mailto:myemail@mydomain.com.
CODE


<HTML>

<HEAD>

<TITLE>My Cool Web Page!</TITLE>

</HEAD>

<BODY BGCOLOR="black">

<FONT COLOR="white">

<H1>This is my very cool web page!</H1>

<HR>

<A HREF="http://winbots.org/">my other very cool website!</A><BR>

my other cool text..<BR>

and my other line...<BR><BR>

you can email me <A HREF="mailto:Cobi@winbots.org">here</A>

</FONT>

</BODY>

</HTML>

 

 

 


Reply

Nazrin
it really helps me....(when I inserting HTML in my site..) tongue.gif

Reply

abcde
Simple things you didn't mension:

CODE
<i>To make your text Italic</i>

CODE
<b>To make your text bold.</b>

CODE
<u>To underline yout text</u>

Reply

Fatal-Fatality
thanks guys, I was kind of rushed, any more input, please give it, the more that people know, the better the websites! biggrin.gif

Reply

skyglow1
What I really suggest is using coding style layout of code. Like for every new thing that is nest in soemthing else, you press tab or 2 spaces for margin like this how I do it on my site:

http://www.skyglow1.freenukehosting.com/

Look at the source code to see.

skyglow1

Reply

odirima
i had a code how to insert a flash animation but i forget it...
someone can give me?

Thanks biggrin.gif

Reply

Latest Entries

Crazy Photon
Unordered lists:

CODE
<ul>

   <li>Element

   <li>Element

   <li>Element

</ul>


Ordered lists:

CODE
<ol>

   <li>Element

   <li>Element

   <li>Element

</ol>

Reply

DSadmin
Well i saw u hadn't mentioned META tags, so here goes:

(i'm not a code guru so i'm not sure how to explain it and stuff...) :shock:

Meta tags tell searches and gots (i think they do) the author of the site, keywords, and content type like html php and stuff. They can tell more stuff but i don't know what that is... ohmy.gif

Example: (this would be between the HEAD tags of a page)

CODE


<META name="Author" content"AUTHORS NAME HERE">

<META name="keywords" content"KEYWORDS, HERE, SEPARATED, BY, COMAS">

<META http-equiv="Content-Type" content"CODE TYPE YOU USE LIKE PHP  AND HTML">



This should help your site rakings is search engines and stuff. :mrgreen:

Hope it helps :wink:

Edit: The paragraph tag, <p>. Well it makes paragraphs.... ohmy.gif

Example:

CODE
<p>THIS IS A PARAGRAPH</p>

<p>THIS IS ANOTHER PARAGRAPH</p>

<p>AND THIS IS A PARAGRAPH ASWELL</p>



well, i think thats it...

Reply

MCK9235
Inserting JS
CODE


<html>

<head>

</head>

<body>

<script language="javascript etc">

window.alert("Hola!");

</script>

<!-- End JS -->

</body>

</html>


Adds JS to your site.
CODE
<!--
starts a comment
CODE
-->
ends a comment
the text inbetween is tottally ignored, the browser sees a <!-- and it skips it.
Doctypes
Although not required for your site to be considered valid it must have a doctype here is the HTML 4 transitional one:
CODE


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">


Reply

skyglow1
If you want to make sure you have correct html on your page, use this HTML verifier and put the link of your website into it:

http://validator.w3.org/

skyglow1

Reply

MCK9235
Links
Tag: <a> stands for anchor.
CODE


<a href="yourdomain.tld">MY site!</a>


Mailto:
CODE


<a href="mailto:you@domain.tld">E-Mail Me!</a>


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
Similar Topics

Keywords : basic, html

  1. Flippingbook Html Edition
    download FREE version (0)
  2. Html Based Emails On Hotmail
    (0)
    Hi everyone. I would like to ask if anyone here knows how to compose a HTML based email, with
    pictures and links, on Hotmail? I can't seem to compose one. Thanks in advance.....
  3. Html, Xhtml, And Css, Sixth Edition (visual Quickstart Guide) Review
    (0)
    HTML, XHTML & CSS then this book is a must as this book will teach you how to build basic websites
    and learn what each tag does and how and where to use it. When you finish this book you will have
    saved yourself a whole bunch of time trying to learn from tutorials and other websites as you will
    be able to build a fully functional website in no time. Also what is best with this book as it
    comes with a companion website in which you can download all the mini tutorials that this book as to
    offer so you can see what their examples look like and learn from how the coding is....
  4. Sitepoint: The Ultimate Html Reference
    (0)
    If you’re a web design both beginner and advance and have a hard time remembering all the
    various html tags, then this book is for you as Ian Lloyd covers every tag from html 1 to XHTML.
    Each tag is broken down about what is is supposed to do and gives you an example of what it looks
    like and what other HTML’s can be used with that tag as well. This book also provides
    DOCTYPES which includes the early version of html up to the current XHTML. So I highly recommend
    getting this book and adding it to your collection as you will never have to buy those bulky h....
  5. Making A Picture Viewer Website
    Html programming or javascript (3)
    this is one thing i've struggled with for ages. I want a webpage where there are little
    thumbnails and in the middle somewhere is the main picture. The littole thumbnails or snipets of
    infor when clicked display the main image corresponding to that clicked thumbnail or link. e.g
    pictures of the country side listed in pairs or 3's or 4's in a column and you click each
    one an the main view on the screen displays that particular picture. How is this achieved. Can any
    one gimme a link to a site with templated for that or javascript for that or html code or past....
  6. Making A Simple Signature With Adobe Photoshop
    A tutorial to basic signature designing: By Accure (3)
    Specs Hardness: 4 / 10 Time: about 10 minutes Result: My .PSD File: Download it now!
    Needings: -Basic Photoshop knowlegend. -Adobe Photoshop CS2 (Or CS3/CS4) -Brushes set ( available
    here ) -A render ( available here ) Basic knowlegend: Steps: 01. Open Adobe Photoshop,
    and go File > New. 02. select the sizes Width: 350 pixels . Height: 150 pixels . Press OK .
    03. Press the button to maximize the window of your new project. 04. Fill your background with
    black (by using the "fill" function). 05. Press F5, click on the small arrow a....
  7. Naming Web Page Files
    Which way you like- MyPage.html or my-page.html or my_page.html (9)
    Everybody talks about meta tags, keywords, good title names and how they can increase page rankings,
    etc. But I was wondering whether the page name itself holds any value in indexing. Yes, I am
    talking about the web page file names (some-thing.html) NOT the one which you put in title tags. I
    am going to express my views and want to know what you think is correct. I have seen pages named in
    various ways like these: 1) my_web_page.html 2) DoYouLikeMyPage.html 3) hey-see-my-webpage.html (I
    think this way is more appropriate) 4) this.is.a.page.html (somewhat confusing) ....
  8. Add Flashing Inbox To Invisionfree Forum
    Html code for invsiionfree!! (0)
    Do you find it annoying when you are on your invisionfree forum, and you get a new message, and it
    ends up taking you 5 minutes to notice? This code makes the inbox link flash bold red saying how
    many messages you have. In version 1 the word inbox stays the same, and doesnt change at all (for
    Example this is flashing: Inbox (2) In version 2 (the second code) the word inbox changes to
    messages (constantly, so that if you have none, it says messages (0) instead of inbox (0). It still
    flashes Red Put the following In the Header and Body Section (Admin Cp>>>Skinning ....
  9. Basic Of Website Creation
    Get basic knowledge on website creation here (9)
    By basic, i mean reaaaal "BASIC". I know that its probably redundant info for so many of us, but I
    still would like you to add your bit into this post , so that newbies benefit from it.....
  10. What Is The Best Free Html Editor?
    (18)
    im looking for any kind that is free really.... i use windows but if you have one for a different
    platfor, go ahead and add it for reference for other users. If you have one for normal text editor
    and wysiwyg, add them both. i have been using notepad as my normal html editor but im looking for
    something different... at least so i can see the different colors of the codes. Right now i am
    downloading moxilla's seamonkey suite but im not sure how good it is... i will post a review if
    i ever use one. If you have used the html editor you suggest or you just heard abou....
  11. Flash Media Into Html/css Website
    does anyone know how to import a flash into a webpage with transparenc (1)
    Hi I need some help , Im designing this website for school studies However, I made a flash drop down
    menu, works perfectly, but you know how flash has a background when you export it in to a SWF file?
    For example my flash is width= 800, and height = 200 but my div box on my html page for my
    navigation is only 50 px my buttons is width of 50px and the rest of the content is the drop down
    animations i want to insert it into my navigation div box but i want to set the flash background to
    transparent so that when the drop down menu comes down it overlaps the text or whateva....
  12. Html Form!
    Using MySQL?! (4)
    Hey, I need your help again! I need some good working tutorial how I can update my SQL through
    HTML form. I did use some tutorials online found with the help of google; but they do not work
    properly; I mean there are still small mistakes. I need to have a good tutorial to follow. It
    should be based on security and more things. It has to be done in proper way.......
  13. Has Anybody Tried Ms Expression Web Html Editor
    It's much better than Frontpage (3)
    I was desperate to finish a site I was designing after I lost my hard drive and my software. I
    downloaded Expression Web from the Microsoft site for a 3 month free trial, and guess what? It's
    surprisingly good! Nothing like that crappy frontpage, it's standards compliant and very
    good for writing CSS. Haven't heard anybody mention the program and wondering if anybody else
    has tried it out. It's free to try from the MS site.....
  14. Aob Blood Grouping
    Few Basic Idea for all (2)
    AOB blood grouping is the most common blood grouping in present world. In this grouping blood
    grouped depending on presence and absence of antigen A and antigen B in blood. Blood groups in AOB
    system are A, B, AB and O. I am trying to explain this blood grouping system as easy as possible so
    that the member of this site who has no science background can also understand the system. If any
    blood contain antigen A but no antigen B, the blood group will be A blood group. If any blood
    contains antigen B but no antigen A, the blood group will be B blood group. If any blood co....
  15. Ftp In Visual Basic 6.0
    Start making your FTP client using VB6 (1)
    Recently, I had a need to make a FTP client, since our webhosting FTP server was kind of exotic, and
    very restrictive, and most of uploads, even though they reach 100% would crash... File would be
    uploaded to a server, but FTP clients just froze upon completion, waiting for the 226 (OK) from FTP
    server... So, I had to make my own, one who would not wait for 226, but instead, watch the file
    pload progress... This tutorial is not fuly complete, in the sense that it does not offer COMPLETE
    FTP client functionality (for example, I ddn't write the code for FTP download, ....
  16. Where Is There A Good Site To Learn Web Html?
    (20)
    im a noob when it comes to web html to design web sites, can some one tell me where to find a good
    website that has good tutorials on how to use web html?....
  17. Html Code Tester. Online Script
    (15)
    Yes, yes. I have another script that I have written and I am distributing. I am not entirely sure if
    this works. I have not tested it yet, but I will later and post back with a demo and fix it up.
    Current script: CODE <?php //Save this as something like htmltest.php function
    CheckForm() { $html_unsafe=$_POST['code']; //Gives us our user
    input $html_safe=str_replace("<?php"," ",$html_unsafe);
    //Starts security measures $html_safe=str_replace("?>","
    ",$html_sa....
  18. Learn Html Quick And Easy
    HTML, javascript, and CSS (14)
    well eversince i got interested in web desighn i've looked for tutorials but they where not that
    helpfull and uderstanderble but there where two web sites that i liked 1. my favorite one was
    htmldog it had tutorials on HTML, CSS, and a little bit of javascript. they where very
    comprehenseve . and i read through all of them, understoode them, in about less than a week. also
    has full references for HTML, and CSS tags. 2.since html dog did not provide realy good javascript
    tutorial i looked to w3school for that while it wasnt very understandable too me, maybe it....
  19. Wanting To Touch Up/learn My Html Again
    (27)
    Ok, well recently i realized that i am not as skilled in HTML (such as building website layouts) as
    i want to be, with tables etc... and so i was thinking about going through many many many many many
    many sites and just touching up on my HTML and see if i can code my own website template before
    starting to learn PHP because that is what i want to do. so, i am asking all of you experianced
    people on trap17 what websites did you use to learn your HTML skills, yees i know i could go to
    google and type in learn html or somthing along the lines of that, but i want to know wh....
  20. Simple C File Handling In Action
    Small code snipet which covers most of basic file handling and navigat (3)
    Yesterday I suddenly got a lot of work. The same work we try to push off, yes you are right all
    formalities to get the code review incorporated and update all source code files with code review
    headers. Imagine if you need to open 300 files one by one and append code review headers at the
    end. Since most files are reviewed in groups of 20 to 30 files. We require one header to be placed
    in say 20 to 30 files. To simplify I went back to my class assignment days and wrote this small c
    utility to open all files passed on command line and open attach code review headers an....
  21. Adding Rows & Columns In Html Table Using Javascript
    (1)
    I'm trying to create a website with a form that collects some user information to store in MySQL
    database. However, I've a problem when I want to dynamically add new rows and columns in the
    HTML table so that the user can add more information in the dynamically added textboxes. Here's
    what I have: CODE                  <table border="0" width="90%"
    align="center" id="itemsTable">                   <tr>
                       <td width="20%">                     Quantity                   
    <....
  22. Basic Ways To Speed Up Your Web Site
    (23)
    Speed is certainly one of the most important factors when it comes to making a successful web site.
    These days’ people have high expectations, they expect a web site to load as fast as an application
    on their operating system, and therefore even a few seconds of waiting can frustrate them or leave
    altogether. A good website should take about 8-12 seconds (for a 56K) to load. The website owner is
    going to have to decide how fast its pages are going to be, for example for a multimedia or a flash
    site they can afford to be a bit slower than others provided that the users k....
  23. How To Make A Web Browser
    Visual Basic 6 (49)
    This is a simple and specific tutorial on how to make a basic web browser in Visual Basic 6. Steps
    1-3 Create a new project, and then go to "Project" on the menu. Click components as shown in the
    following image. Find the component "Microsoft Internet Controls," check it, and click "Apply" and
    then "Close." Click the icon that was just added in the tools window, and draw a large sized
    window with it. This is going to be where you view webpages through your browser, so don't make
    it small, but leave room for buttons and other accessories. Steps 4-6 Make a t....
  24. Visual Basic 6.0 Help Needed
    Adding lines to a textbox without delete (15)
    I need help with Visual Basic 6.0 and adding lines to a textbox without deleting any previous
    lines.. I've gotten as far as finding a way to add the lines, but it deletes the prevous entree.
    Help is appreciated!....
  25. Html Tag For A Code Box
    Where You Put HTML Code For Your Users (4)
    Well I have seen it all over the web. Lots of sites have code boxes so you can promote them or they
    show you a code you can use for javascript and stuff like that. I would like to know the HTML code
    for those boxes. Thanks in advance for your help.....
  26. Simple Login In Visual Basic 6
    user interaction example trough login programm (6)
    First of all, I am NOT a programmer, this is something my friend taught me. It describes basic
    interaction with the user, while showing basic functionality of this simple programm. So, without
    further ado, we're off to the tutorial: First of all, start your visual basic, when prompted
    for new project, select Standard Exe . Next, we need to open code window, so we can start typing
    the program. This can be done in two ways, one is double clicking on the form, or selecting Code
    from View menu. If you double clicked on the form, you will see following text: CODE ....
  27. The Best And Free Website/html Editors + Text Editors
    A good collection! Check it out. (48)
    Here they are, the best html editors. Just pick one because they are all free, or choose one of the
    ones i most recommend. WebCore Designer 2005 http://www.mpsoftware.dk/webcoredesigner.php
    HTMLGate Free http://www.mpsoftware.dk/htmlgate.php Ma Page Web http://www.aldweb.com
    MAX's HTML Beauty++ 2004 http://www.htmlbeauty.com WebWorks http://w1.213.telia.com
    PageBuilder HTML Editor http://www.tafweb.com Website Mentor http://www.dark-street.com
    Cascade DTP http://www.price-media.demon.co.uk BPlainPro http://home5.swipnet.se/~w-52253/hy....
  28. [tutorial] Visual Basic 6 Minimize To Tray
    Minimize to Tray (4)
    This example will "minimize" your program to the system tray when you click on a button, and restore
    it when you click the system tray icon. For this example you'll need: 1 Form - Form1 1 button -
    Command1 Add a Module to your project, and ad this code: CODE ' Create an Icon in System
    Tray Needs Public Type NOTIFYICONDATA cbSize As Long hwnd As Long uId As Long uFlags As Long
    uCallBackMessage As Long hIcon As Long szTip As String * 64 End Type Public Const NIM_ADD = &H0
    Public Const NIM_MODIFY = &H1 Public Const NIM_DELETE = &H2 Public Const WM_MOUSEMOVE ....
  29. Does Anyone Know Where I Can Get A Free Html Maker
    (13)
    I was curious. There is a program clled dreamweaver which does what I want but it cost to much.....
  30. where did you learn html from?
    (85)
    HI, i am intresting in knowing where you began learning html of what inspired you to start learning
    html. which programs did you use or which progs dyu use?....

    1. Looking for basic, html

Searching Video's for basic, html
Similar
Flippingbook
Html Edition
- download
FREE version
Html Based
Emails On
Hotmail
Html, Xhtml,
And Css,
Sixth
Edition
(visual
Quickstart
Guide)
Review
Sitepoint:
The Ultimate
Html
Reference
Making A
Picture
Viewer
Website -
Html
programming
or
javascript
Making A
Simple
Signature
With Adobe
Photoshop -
A tutorial
to basic
signature
designing:
By Accure
Naming Web
Page Files -
Which way
you like-
MyPage.html
or
my-page.html
or
my_page.html
Add Flashing
Inbox To
Invisionfree
Forum - Html
code for
invsiionfree
!!
Basic Of
Website
Creation -
Get basic
knowledge on
website
creation
here
What Is The
Best Free
Html Editor?
Flash Media
Into
Html/css
Website -
does anyone
know how to
import a
flash into a
webpage with
transparenc
Html
Form! -
Using
MySQL?!
Has Anybody
Tried Ms
Expression
Web Html
Editor -
It's
much better
than
Frontpage
Aob Blood
Grouping -
Few Basic
Idea for all
Ftp In
Visual Basic
6.0 - Start
making your
FTP client
using VB6
Where Is
There A Good
Site To
Learn Web
Html?
Html Code
Tester.
Online
Script
Learn Html
Quick And
Easy - HTML,
javascript,
and CSS
Wanting To
Touch
Up/learn My
Html Again
Simple C
File
Handling In
Action -
Small code
snipet which
covers most
of basic
file
handling and
navigat
Adding Rows
&
Columns In
Html Table
Using
Javascript
Basic Ways
To Speed Up
Your Web
Site
How To Make
A Web
Browser -
Visual Basic
6
Visual Basic
6.0 Help
Needed -
Adding lines
to a textbox
without
delete
Html Tag For
A Code Box -
Where You
Put HTML
Code For
Your Users
Simple Login
In Visual
Basic 6 -
user
interaction
example
trough login
programm
The Best And
Free
Website/html
Editors +
Text Editors
- A good
collection&#
33; Check it
out.
[tutorial]
Visual Basic
6 Minimize
To Tray -
Minimize to
Tray
Does Anyone
Know Where I
Can Get A
Free Html
Maker
where did
you learn
html from?
advertisement



Basic HTML Tutorial



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free 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