Yay! My first test in HTML Worked!!!

This is a discussion on "Yay! My first test in HTML Worked!!!" within the Web Page Design section. This forum, and the thread "Yay! My first test in HTML Worked!!! are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Closed Thread
 
LinkBack Thread Tools
  #1  
Old Feb 6th, 2004, 00:13
Reputable Member
Join Date: Jan 2004
Location: United Kingdom
Posts: 104
Thanks: 0
Thanked 0 Times in 0 Posts
Yay! My first test in HTML Worked!!!

Ok, its very very basic, but I am sooooo chuffed!! I wrote this in notepad, with help from a little book :wink: You have got to give me some credit here... I've been relying on Dreamweaver afterall!

Have a look! I am well pleased!!

http://www.galaxy.silvern.co.uk

Sarah x
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!

  #2  
Old Feb 6th, 2004, 07:00
Reputable Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 341
Thanks: 0
Thanked 0 Times in 0 Posts
Glad to see you're 'biting the bullet' and learning to code by hand (as opposed to a WYSIWYG system). You're on the way to becoming a professional Web Master.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old Feb 6th, 2004, 07:24
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Good Job!

I think most of us learnt this way (the hard way) but it can make things easier in the end as you have more idea of what's going on sooner.

One thing I would mention to save you a lot of trouble in the future, is to make sure that all your tags use lowercase letters and none of them are uppercase. Sounds silly I know, but trust me, it'll save you some hassle if you get used to doing it this way now.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old Feb 6th, 2004, 08:19
Reputable Member
Join Date: Jan 2004
Location: United Kingdom
Posts: 104
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks Guys

Sirkent - this book says to do the tags in uppercase, so they are easy to spot when looking through the script...

Can you advise me why it's easier to do it in lower case?

Thanks in advance

Sarah x
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old Feb 6th, 2004, 08:38
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
yeah.. my ASP book says to do them in Upper case too... but my JavaScript book says do them in lowercase so it is easier to tell between your HTML and your SCRIPT.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old Feb 6th, 2004, 09:11
Rob's Avatar
Rob Rob is online now
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,191
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
Actually there is an extremely good reason for using lowercase..... it's because it is part of the W3C standard.
Those not already using lowercase, should switch immediately.

If you use any of the W3C validators, then it will scream out at uppercase tags and attributes.
I read that google more easily indexes sites that pass W3C validation.

Always use lowercase for HTML and for server side scripting (ASP, PHP, JSP) then use UPPERCASE where your scripting language allows. Also, it is good practice to use UPPERCASE for SQL statements.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #7  
Old Feb 6th, 2004, 09:22
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Rob is of course, completely correct. Here's the techy bit...

HTML is a fairly old language (by web standards) and originally it would have been fine to use uppercase.

However XHTML was defined a few years back and it's basically the new version of HTML. There's very few differences and nothing that will really throw you once you learn HTML, but because XHTML incorporates XML (which is used to define information as opposed to HTML which defines a layout) it is case sensitive and therefore
and
are interpreted as different tags.

If you want the lowdown on XHTML then checkout Gwx03's tutorial.
http://www.webforumz.com/topic.asp?TOPIC_ID=464
I don't think there's anything there that'll really confuse you even if you don't know how to do tables, etc.
It would definetly be worthwhile learning those rules and conforming to them now rather than learning to do it the way your book says and then realising that you should change!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old Feb 6th, 2004, 09:26
Reputable Member
Join Date: Jan 2004
Location: United Kingdom
Posts: 104
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks! I shall switch to lowercase immediately!

I have another question, when you view source on a site, quite often there is 'spaces' or 'tabs' in between the script... like this:

<p align="center"><font face="geneva, verdana, arial" size="2">Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
</font></p>
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="#A4AB93">
<table border="0" cellspacing="1" cellpadding="1">
<form name="PostTopic" method="post" action="post_info.asp" onSubmit="return validate();">
<input name="ARCHIVE" type="hidden" value="">
<input name="Method_Type" type="hidden" value="Reply">
<input name="Type" type="hidden" value="">
<input name="REPLY_ID" type="hidden" value="">
<input name="TOPIC_ID" type="hidden" value="902">
<input name="FORUM_ID" type="hidden" value="2">
<input name="CAT_ID" type="hidden" value="1">
<input name="Refer" type="hidden" value="http://www.webforumz.com/topic.asp?TOPIC_ID=902">
<input name="cookies" type="hidden" value="yes">

Nicked that from here... now... do you guys just 'page tab' to do that, and is it just so things are easier to find? Is there a set rule to this?

Thanks again!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #9  
Old Feb 6th, 2004, 09:27
Reputable Member
Join Date: Jan 2004
Location: United Kingdom
Posts: 104
Thanks: 0
Thanked 0 Times in 0 Posts
Ok... that didn't work. But hopefully you will know what I mean!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #10  
Old Feb 6th, 2004, 09:43
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
Yes, You just hit the tab key in order to do that. All that does is break things down so you can "group" things. It makes your Code Easier to read and actually when debugging it saves a whole lot of time.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #11  
Old Feb 6th, 2004, 09:53
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
nice picture!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #12  
Old Feb 6th, 2004, 09:57
Reputable Member
Join Date: Jan 2004
Location: United Kingdom
Posts: 104
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks kulegamr!!

Smokie, don't be sarcastic you naughty boy! rofl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #13  
Old Feb 6th, 2004, 13:36
Highly Reputable Member
Join Date: Aug 2003
Location: Australia
Posts: 662
Thanks: 0
Thanked 0 Times in 0 Posts
No problem :wink:
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #14  
Old Feb 9th, 2004, 12:30
New Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
hand code good is, HTML learn you will, patience will develop code skills

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #15  
Old Feb 23rd, 2004, 19:15
benbacardi's Avatar
Highly Reputable Member
Join Date: Feb 2004
Location: United Kingdom
Age: 20
Posts: 611
Thanks: 0
Thanked 0 Times in 0 Posts
Hey people can you have a look at my new (well sort of) atempts at HTML JavaScript and CSS? Kinda validate my code for me sort of? If you dont mind:

www.thewebweaver.cjb.net

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #16  
Old Feb 23rd, 2004, 20:25
Rob's Avatar
Rob Rob is online now
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,191
Blog Entries: 7
Thanks: 27
Thanked 23 Times in 20 Posts
Ben...

Can you post this in a SEPERATE thread? That way, we don't wonder off the subject of THIS topic.

Cheers.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Tags
yay, first, test, html, worked

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Test JacobHaug Webforumz Cafe 11 Sep 13th, 2007 16:51
artviper.com/test/artviperde/index.html artViper Free Web Site Critique 5 Nov 3rd, 2006 14:48
Beta Test new Open Source AJAX HTML/CSS Software arrowplain Web Page Design 0 Feb 27th, 2006 22:19
HTML 4.01 test fail cos of flash señorbadger Web Page Design 2 Oct 9th, 2003 21:45


All times are GMT. The time now is 21:38.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42