nOOb advice

This is a discussion on "nOOb advice" within the Web Page Design section. This forum, and the thread "nOOb 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 Jul 27th, 2006, 03:46
New Member
Join Date: Jul 2006
Location: Edinburgh, Scotland
Age: 22
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to SynchPedro86 Send a message via Yahoo to SynchPedro86
Question nOOb advice

I am trying to build the first page of my Dino Crisis site by practising on a HTML fuzzy pad with random tags and images. I cannot paste my HTML coding on these forums because there are too many image links and I cannot be arsed editing them all. Basically, the layout looks really lame and the news content appears below the layout instead of in the middle of the page, or sometimes it will not show up at all. I think it has something to do with my tables. It just looks really messed up, to put it mildly.
Reply With Quote

  #2 (permalink)  
Old Jul 27th, 2006, 07:31
Highly Reputable Member
Join Date: Aug 2005
Location: 3rd Branch Up, Old Oak.
Age: 48
Posts: 658
Thanks: 0
Thanked 0 Times in 0 Posts
Re: nOOb advice

can u provide a link to the page?
Reply With Quote
  #3 (permalink)  
Old Jul 27th, 2006, 12:09
New Member
Join Date: Jul 2006
Location: Edinburgh, Scotland
Age: 22
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to SynchPedro86 Send a message via Yahoo to SynchPedro86
Re: nOOb advice

You see, that's the thing. I don't have a site yet. I've never made a site before. I don't even know how to design signaturtes (I always have to leave a request). All I have is a notepad document with my HTML content. I tried to post the layout, but there seemed to be a lot of image tags because I copied it from another site. I'm not sure what they were because there didn't appear to be any images. Because of the image limit, my post could not be submitted.
Reply With Quote
  #4 (permalink)  
Old Jul 27th, 2006, 12:27
craig's Avatar
Reputable Member
Join Date: Sep 2005
Location: Preston, UK
Age: 21
Posts: 381
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to craig
Re: nOOb advice

Try learning slowly first before you delve into making a full on website.
You need to be able to view what your coding so save your code as a .html file and look at it in a Firefox and I.E.
What I think you would be best off doing is learning the basics, all of the different tags for html. Once you've got a bit of HTML knowledge look into CSS and start to understand how that works.
You need to work from the ground up and not just copy some code from a site, which you wont be able to understand.
If you dont want to go through the learning process... (I advise you do).. then you could always hire a designer to create a site which is easy for you to update and maintain

Craig
Reply With Quote
  #5 (permalink)  
Old Jul 27th, 2006, 12:52
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,608
Thanks: 0
Thanked 6 Times in 6 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: nOOb advice

This should give you a good starting point. A very basic XHTML Strict document to start with.

Code: Select all
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <title>Foo!</title>
        <link rel="stylesheet" href="css/foo.css" media="screen" type="text/css" />
        <link rel="stylesheet" href="css/fooprint.css" media="print" type="text/css" />
        <meta name="Keywords" content="Foo, Foo, Foo, Foo" />
        <meta name="Author" content="Mr. Foo" />
        <meta name="Copyright" content="Foo, Inc." />
        <meta name="Description" content="This is all about Foo." />
    </head>
    <body>
        <h1>Foo heading</h1>
        <p>Foo Foo Foo Foo <a href="" title="">Foo Link</a>.</p>
        <img src="" alt="" width="" height="" />
    </body>
</html>
Quick Cheat Sheet to get you started:

HTML Documents have a basic structure:

Doc Type

Head

Content

Link to an external CSS style sheet:
<link rel="stylesheet" href="css/foo.css" media="screen" type="text/css" />

Link tag: <a href="Link URL" title="Link Title">Link Text</a>

Image tag: <img src="Image Source" alt="Image Description" width="Image Width" height="Image Height" />

Paragraph:
<p>Paragraph Text</p>

Heading Tags:
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>

Unordered List:
<ul>
<li>Text</li>
</ul>

Ordered List:
<ol>
<li>Text</li>
</ol>

Definition List:
<dl>
<dt>Title</dt>
<dd>Blah Blah</dd>
</dl>

Form stuff:

<fieldset>
<legend></legend>
</fieldset>

<form name="" action="" method="post/get"></form>

<input name="" type="text" size="" value="" />

<textarea rows="" cols="" name="" value=""></textarea>

<input type="button" name="" value="" />

<input type="submit" name="" value="" />

Last edited by moojoo; Jul 27th, 2006 at 13:07.
Reply With Quote
  #6 (permalink)  
Old Jul 27th, 2006, 13:39
Highly Reputable Member
Join Date: Aug 2005
Location: 3rd Branch Up, Old Oak.
Age: 48
Posts: 658
Thanks: 0
Thanked 0 Times in 0 Posts
Re: nOOb advice

It's gonna be hard for us to help ya with anything specific if we can't see whut you've done / are trying to do.
Reply With Quote
  #7 (permalink)  
Old Jul 29th, 2006, 10:20
Highly Reputable Member
Join Date: Jul 2005
Location: Northampton, England
Age: 19
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to bruno89
Re: nOOb advice

try www.htmlgoodie.com its got the basics on it you can progress from there thats how i lernt lol its alot of reading but it waists a bit of time .lol. i use notepad aswell i allways have done i havn't got the money for these big flash programs the rest of these "coff" wonderfull people use
Reply With Quote
  #8 (permalink)  
Old Jul 29th, 2006, 12:33
Highly Reputable Member
Join Date: Aug 2005
Location: 3rd Branch Up, Old Oak.
Age: 48
Posts: 658
Thanks: 0
Thanked 0 Times in 0 Posts
Re: nOOb advice

Quote:
Originally Posted by bruno89 View Post
the rest of these "coff" wonderfull people
It's true, I'm not wonderful.
I am cutest though.
Reply With Quote
  #9 (permalink)  
Old Jul 29th, 2006, 13:06
minute44's Avatar
Moderator
Join Date: Apr 2006
Location: Nottingham UK
Age: 24
Posts: 1,347
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to minute44
Re: nOOb advice

You want us to help you with a problem but you don't know what the problem is and you have no way of showing us... Sorry man, We're good but we're not that good!
Last Blog Entry: Annoying people.... (Jan 16th, 2008)
Reply With Quote
  #10 (permalink)  
Old Jul 30th, 2006, 05:56
Highly Reputable Member
Join Date: Jul 2005
Location: Northampton, England
Age: 19
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to bruno89
Re: nOOb advice

Quote:
Originally Posted by RedSkwirrell View Post
It's true, I'm not wonderful.
I am cutest though.

lol ok u think that but u wunt win over me im just a god
Reply With Quote
  #11 (permalink)  
Old Jul 30th, 2006, 07:56
Highly Reputable Member
Join Date: Aug 2005
Location: 3rd Branch Up, Old Oak.
Age: 48
Posts: 658
Thanks: 0
Thanked 0 Times in 0 Posts
Re: nOOb advice

I have a certificate.
Reply With Quote
  #12 (permalink)  
Old Jul 30th, 2006, 12:14
Highly Reputable Member
Join Date: Jul 2005
Location: Northampton, England
Age: 19
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to bruno89
Re: nOOb advice

lol *coff* big ed haha only jokin
Reply With Quote
  #13 (permalink)  
Old Jul 31st, 2006, 00:32
New Member
Join Date: Jul 2006
Location: Edinburgh, Scotland
Age: 22
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to SynchPedro86 Send a message via Yahoo to SynchPedro86
Re: nOOb advice

Thanks for the advice!
Reply With Quote
  #14 (permalink)  
Old Jul 31st, 2006, 13:18
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,608
Thanks: 0
Thanked 6 Times in 6 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: nOOb advice

Man, my post should get anyone started.. grargh! Listen to the Moojoo..... hehe sorry. rough morning.
__________________
I've got <style> and .class

Last edited by moojoo; Jul 31st, 2006 at 14:02.
Reply With Quote
  #15 (permalink)  
Old Jul 31st, 2006, 14:14
minute44's Avatar
Moderator
Join Date: Apr 2006
Location: Nottingham UK
Age: 24
Posts: 1,347
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to minute44
Re: nOOb advice

Quote:
Originally Posted by moojoo View Post
Man, my post should get anyone started.. grargh! Listen to the Moojoo..... hehe sorry. rough morning.

HAHAHAHAHAHA
Last Blog Entry: Annoying people.... (Jan 16th, 2008)
Reply With Quote
Reply

Tags
noob, advice

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
Noob looking for help Gardenworks Starting Out 2 Apr 6th, 2008 15:57
Noob! chiefwiggum Introduce Yourself 7 May 23rd, 2007 10:31
Noob needs help. Geekmation Flash & Multimedia Forum 3 Jan 14th, 2007 23:51
Noob in Need ;o) Brain-Chemical Introduce Yourself 3 Feb 6th, 2006 00:18
Noob looking for help Gamebreaker3233 Introduce Yourself 3 Nov 16th, 2005 04:03


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


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