Need HTML advice.

This is a discussion on "Need HTML advice." within the Web Page Design section. This forum, and the thread "Need HTML advice. are both part of the Design Your Website category.



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

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jan 23rd, 2007, 21:04
New Member
Join Date: Jan 2007
Location: California
Age: 18
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Need HTML advice.

Hi, i'm new to HTML and hope age doesn't matter- excuse me for my english and grammar. I want to improve on my HTML and by "improve" i mean i want to better myself and in doing so I thought maybe someone out there can give me a few advice on how to put HTML to better use. I know the basics of HTML from W3school and a book written by Elizabeth Castro but i want to know how i can get some exercise practice with it? I want to be able to build website with html ONLY and after i get to know it in the back of my head then i want to learn css. I hope my thread is understandable. Thank You.
Reply With Quote

  #2 (permalink)  
Old Jan 23rd, 2007, 21:14
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

There's only one way to really learn it in depth and that's by doing it.

Choose a project, favourite hobby or some thing and construct a web site about that.
Reply With Quote
  #3 (permalink)  
Old Jan 23rd, 2007, 23:45
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

While HTML by itself is easier for beginners, you're setting yourself back by not learning HTML and CSS at the same time. A good XHTML structure styled with CSS is the best way to start learning how to build websites.
Reply With Quote
  #4 (permalink)  
Old Jan 24th, 2007, 02:50
New Member
Join Date: Jan 2007
Location: California
Age: 18
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Thank you for the quick advices, and I'll take the information into consideration because I think it's a great idea- i think...
Reply With Quote
  #5 (permalink)  
Old Jan 24th, 2007, 11:51
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Yep ... like Ryan said, it's hard to learn "just" html. You need to learn CSS as well ... think of html as you house but with nothing in: no paint, no furniture, no food, no nothing! CSS is the paint, the furniture, the food, the presentation

See the stickied thread in the Beginners Resources section called Resources for learning how to use CSS for layout
Reply With Quote
  #6 (permalink)  
Old Jan 24th, 2007, 16:00
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Once you learn your css and html, everything will be easier. You'll become a much better well-rounded designer, and you'll understand how to structure your pages alot easier and quicker. I learned html first and the learned css and it took me forever to figure out how to apply the two without cheating and using tables. Learn them both and css as well as you can because there's no limit with css. you can even make drop down menus. If you have any questions pm me or aim me when ever.
Reply With Quote
  #7 (permalink)  
Old Jan 24th, 2007, 17:40
New Member
Join Date: Jan 2007
Location: California
Age: 18
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

thanks a lot! the last two reply also really helped a lot to boost my obscure feelings about learning css, so i'll post or pm one of you when i have a question, Thank you.
Reply With Quote
  #8 (permalink)  
Old Jan 24th, 2007, 18:07
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Quote:
Originally Posted by nasumaru View Post
.. so i'll post or pm one of you when i have a question, Thank you.
POST!!! Please POST!!! Don't PM me ... you'll get a better chance at having replies if you create a thread!
Reply With Quote
  #9 (permalink)  
Old Jan 27th, 2007, 21:11
New Member
Join Date: Jan 2007
Location: California
Age: 18
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

i'm not going to create a new thread since this is still focus on advice.
I want someone to check my "web building exercises site" to see if i did anything wrong with the layout or some advice on improving it?

http://gametalk.20m.com/
Reply With Quote
  #10 (permalink)  
Old Jan 28th, 2007, 22:06
New Member
Join Date: Jan 2007
Location: Hull, East Yorkshire, UK
Age: 27
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Looking good so far

Just somthing you could use

1) you could centralize your site so it fits for all resolutions all you do is change your css wrapper code from

Code: Select all
#rap {
    margin: 0 auto;
    text-align: left; 
    border: 0px solid #000 }
to this:
Code: Select all
#rap {
    margin: auto;
    text-align: left;
    width:760px; /* change to the width you want your site */
    border: 0px solid #000 }
that way it will be in the center of the browser instead of in the left hand side,

not really noticable in small resolutions but with bigger ones like mine (1280 x 1024) its very noticable.

2) why not put yor css in an external file then just link to it for everypage then you only need to change your css code once.

use this in your header section:
Code: Select all
<link rel="stylesheet" href="foldername/filename.css" type="text/css" />
just change filename.folder name to the location where your css file is located.

Also in case you don't already know some of youe links don't work or the page don't exist yet the pages are:
snes.html
flash.html

Last edited by nuttycoder; Jan 28th, 2007 at 22:35. Reason: Adding to post
Reply With Quote
  #11 (permalink)  
Old Jan 29th, 2007, 03:36
New Member
Join Date: Jan 2007
Location: California
Age: 18
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

thanks, i'll keep that in mind when i get sometime to work around it--
I haven't gotten a chance to work with my other two links.
Reply With Quote
  #12 (permalink)  
Old Jan 29th, 2007, 15:59
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need HTML advice.

Yeah external css is the best if your going make multiple pages all you have to do is call up that css sheet and you'll have that consistancy throughout all your pages. Easy as pie.
Reply With Quote
  #13 (permalink)  
Old Jan 29th, 2007, 16:56
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,946
Blog Entries: 1
Thanks: 0
Thanked 29 Times in 29 Posts
Re: Need HTML advice.

We are all doomed.. DOOMED!!!!!!!!!! Good start btw, but does the world really need more sites on gaming? I personally say hell yes. Can't wait to see it evolve. =)
__________________
I hate IE 6. Just sayin....
http://www.mevans76.com
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
Reply

Tags
advice, help, html

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
need advice mokej Flash & Multimedia Forum 3 Apr 16th, 2007 18:43
Advice lister Starting Out 4 Mar 17th, 2007 22:37
Hi I am new and need advice cope4you Hosting & Domains 4 Aug 21st, 2006 04:46
html advice jleedham Web Page Design 1 Jan 2nd, 2005 13:58


All times are GMT. The time now is 05:06.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs 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 43