Web Design Web Design Forum
Registration is free! Here you can view your subscribed threads, work with private messages and edit your profile and preferences Calendar Find other members Frequently Asked Questions Search
Home Web Design

Convenient web based access to our favorite web design Usenet groups

web design reviews

This is Interesting: Free Magazines for Graphics designers and webmasters  





Pages (2): [1] 2 »   Last Thread  Next Thread
Author
Thread Post New Thread   

Moving on .. need help
 

W.R




quote this post edit post

IP Loged report this post

Old Post  08-19-04 - 06:21 PM  
Okay I am now using Notepad to do the coding..

I want to squeeze the lines together now... they have
a lot of white space between them at the moment.
Existing code is as follows:

<html>
<head>
<title>Wayne Rowe's Resume</title>
</head>
<body>
<h1><center>Wayne A. Rowe</center></h1>
<h3><center><basefont size="2">3204N 4900E<br>
<h3><center>Murtaugh, Idaho<br>
<h3><center>83344<br></center></h3>
<h4><center><basefont size="1">208-432-5531
crystlenwayne@peoplepc.com</center></h4>
</body>
</html>





Post Follow-Up to this message ]
Re: Moving on .. need help
 

Frogleg




quote this post edit post

IP Loged report this post

Old Post  08-21-04 - 09:33 AM  
On Mon, 16 Aug 2004 14:47:48 GMT, "W.R" <crystlenwayne@peoplepc.com>
wrote:

>Okay I am now using Notepad to do the coding..

Aside: Notepad is not the be-all, end-all for writing HTML.
The "use Notepad" directive generally means "DON'T use Word or
FrontPage." This is because MS apps tend to have a mind of their own
and add/subtract things at whim. With Notepad (or Wordpad or Textpad
or others), what you write isn't changed by the application.
>
>I want to squeeze the lines together now... they have
>a lot of white space between them at the moment.
>Existing code is as follows:
>
><html>
><head>
><title>Wayne Rowe's Resume</title>
></head>
><body>
><h1><center>Wayne A. Rowe</center></h1>

One default characteristic of headings is that they automatically
insert a leading and following linefeed. Squeezing up all your HTML
directives on one line won't change this. CSS can.

><h3><center><basefont size="2">3204N 4900E<br>
><h3><center>Murtaugh, Idaho<br>
><h3><center>83344<br></center></h3>
><h4><center><basefont size="1">208-432-5531
>crystlenwayne@peoplepc.com</center></h4>
></body>
></html>

If you don't understand HTML, it would be a good idea to learn before
trying to write your resume with it. Joe Barta's
http://www.pagetutor.com/
is excellent.


Post Follow-Up to this message ]
Re: Moving on .. need help
 

kchayka




quote this post edit post

IP Loged report this post

Old Post  08-21-04 - 09:33 AM  
Frogleg wrote:
>
> If you don't understand HTML, it would be a good idea to learn before
> trying to write your resume with it. Joe Barta's
> http://www.pagetutor.com/
> is excellent.

Ish - do you really want someone to learn from these outdated examples?
Nobody in their right mind should be using <font> any more. How about
something more up-to-date, like

<URL:http://tranchant.plus.com/web/html-tutorial/>

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.


Post Follow-Up to this message ]
Re: Moving on .. need help
 

Frogleg




quote this post edit post

IP Loged report this post

Old Post  08-21-04 - 12:17 PM  
On Fri, 20 Aug 2004 15:07:43 -0500, kchayka <usenet@c-net.us> wrote:

>Frogleg wrote: 
>
>Ish - do you really want someone to learn from these outdated examples?
>Nobody in their right mind should be using <font> any more. How about
>something more up-to-date, like
>
><URL:http://tranchant.plus.com/web/html-tutorial/>

Barta's tutorial is very basic, very clear, full of step-by-step
examples and practice exercises, and downloadable. Its organization is
clear and unambiguous.

Mark's tutorial avoids <font> by not mentioning fonts at all,  There
are numerous mentions that "CSS does this better," and an "unfinished"
CSS totorial, the link to which doesn't show up in Firefox (at
800x600) , since the leftmost column doesn't scroll! Its organization
is random; there are no "try this and see what it looks like"
examples.

I would recommend
http://www.w3schools.com/html/default.asp
over Mark's version, if I had to choose a basic HTML tutorial other
than Barta's


Post Follow-Up to this message ]
Re: Moving on .. need help
 

kchayka




quote this post edit post

IP Loged report this post

Old Post  08-21-04 - 05:22 PM  
Frogleg wrote:
> On Fri, 20 Aug 2004 15:07:43 -0500, kchayka <usenet@c-net.us> wrote:
> 
>
> Barta's tutorial is very basic, very clear, full of step-by-step
> examples and practice exercises, and downloadable. Its organization is
> clear and unambiguous.

It also encourages bad coding practices, and does nothing to teach
proper structure or semantics. We have enough crappy sites out there
already, those following his tutorial will only add to the dung heap.

> I would recommend http://www.w3schools.com/html/default.asp
> if I had to choose a basic HTML tutorial other than Barta's

w3schools is far better, just please stop sending newbies to Barta.
Sites like his should either update their content to stay with the
times, or get out of the game altogether.

--
Reply email address is a bottomless spam bucket.
Please reply to the group so everyone can share.


Post Follow-Up to this message ]
Re: Moving on .. need help
 

Neal




quote this post edit post

IP Loged report this post

Old Post  08-22-04 - 12:24 AM  
On Sat, 21 Aug 2004 07:58:00 GMT, Frogleg <frogleg@nowhere.com> wrote:

> Mark's tutorial avoids <font> by not mentioning fonts at all,

... and since that element is deprecated in the DTD it teaches, that's
appropriate.

> There
> are numerous mentions that "CSS does this better," and an "unfinished"
> CSS totorial,

We're all busy, man.

> the link to which doesn't show up in Firefox (at
> 800x600) , since the leftmost column doesn't scroll!

That's a big complaint from me as well - and a textbook example of the
usability problem with position: fixed;

> Its organization
> is random; there are no "try this and see what it looks like"
> examples.

Hm? Quite a few as I saw.

> I would recommend
> http://www.w3schools.com/html/default.asp
> over Mark's version, if I had to choose a basic HTML tutorial other
> than Barta's

I also like http://www.htmldog.com for the CSS tutorial. I'm not satisfied
with the (X)HTML bits, they are sometimes misleading.




Post Follow-Up to this message ]
Re: Moving on .. need help
 

Frogleg




quote this post edit post

IP Loged report this post

Old Post  08-22-04 - 12:14 PM  
On Sat, 21 Aug 2004 13:17:49 -0400, Neal <neal413@yahoo.com> wrote:

>On Sat, 21 Aug 2004 07:58:00 GMT, Frogleg <frogleg@nowhere.com> wrote:
> 
>
>... and since that element is deprecated in the DTD it teaches, that's
>appropriate.

Read the post -- I wrote that he doesn't mention "fonts" at all. Since
this is one of the basic things people generally want to fiddle with,
I think it's a notable ommission.


Post Follow-Up to this message ]
Re: Moving on .. need help
 

Neal




quote this post edit post

IP Loged report this post

Old Post  08-22-04 - 05:15 PM  
On Sun, 22 Aug 2004 09:50:54 GMT, Frogleg <frogleg@nowhere.com> wrote:

> On Sat, 21 Aug 2004 13:17:49 -0400, Neal <neal413@yahoo.com> wrote:
> 
>
> Read the post -- I wrote that he doesn't mention "fonts" at all. Since
> this is one of the basic things people generally want to fiddle with,
> I think it's a notable ommission.


Read the very first page of his tutorial.

"The ML of HTML stands for mark-up language. HTML consists of text only—
there is no bold, no italics, no fancy fonts, just letters, numbers,
symbols and spaces. HTML is a “code” that describes the structure of the
content. Rules in the user’s browser tell it how to display the structure
in the HTML, which can be overridden by CSS styling rules (see the
separate tutorial when finished."


Post Follow-Up to this message ]
Re: Moving on .. need help
 

Frogleg




quote this post edit post

IP Loged report this post

Old Post  08-24-04 - 12:19 AM  
On Fri, 20 Aug 2004 15:07:43 -0500, kchayka <usenet@c-net.us> wrote:

>Frogleg wrote: 
>
>Ish - do you really want someone to learn from these outdated examples?
>Nobody in their right mind should be using <font> any more. How about
>something more up-to-date, like
>
><URL:http://tranchant.plus.com/web/html-tutorial/>

Barta's tutorial is very basic, very clear, full of step-by-step
examples and practice exercises, and downloadable. Its organization is
clear and unambiguous.

Mark's tutorial avoids <font> by not mentioning fonts at all,  There
are numerous mentions that "CSS does this better," and an "unfinished"
CSS totorial, the link to which doesn't show up in Firefox (at
800x600) , since the leftmost column doesn't scroll! Its organization
is random; there are no "try this and see what it looks like"
examples.

I would recommend
http://www.w3schools.com/html/default.asp
over Mark's version, if I had to choose a basic HTML tutorial other
than Barta's


Post Follow-Up to this message ]
Re: Moving on .. need help
 

Frogleg




quote this post edit post

IP Loged report this post

Old Post  08-24-04 - 08:19 PM  
On Mon, 16 Aug 2004 14:47:48 GMT, "W.R" <crystlenwayne@peoplepc.com>
wrote:

>Okay I am now using Notepad to do the coding..

Aside: Notepad is not the be-all, end-all for writing HTML.
The "use Notepad" directive generally means "DON'T use Word or
FrontPage." This is because MS apps tend to have a mind of their own
and add/subtract things at whim. With Notepad (or Wordpad or Textpad
or others), what you write isn't changed by the application.
>
>I want to squeeze the lines together now... they have
>a lot of white space between them at the moment.
>Existing code is as follows:
>
><html>
><head>
><title>Wayne Rowe's Resume</title>
></head>
><body>
><h1><center>Wayne A. Rowe</center></h1>

One default characteristic of headings is that they automatically
insert a leading and following linefeed. Squeezing up all your HTML
directives on one line won't change this. CSS can.

><h3><center><basefont size="2">3204N 4900E<br>
><h3><center>Murtaugh, Idaho<br>
><h3><center>83344<br></center></h3>
><h4><center><basefont size="1">208-432-5531
>crystlenwayne@peoplepc.com</center></h4>
></body>
></html>

If you don't understand HTML, it would be a good idea to learn before
trying to write your resume with it. Joe Barta's
http://www.pagetutor.com/
is excellent.


Post Follow-Up to this message ]
Sponsored Links
 





All times are GMT. The time now is 04:19 PM. Post New Thread   
Pages (2): [1] 2 »   Previous Last Thread   Next Thread next
Site Ratings & Reviews archive | Show Printable Version | Email this Page | Subscribe to this Thread

Popular forums

Adobe Photoshop forum Macromedia Flash Web Site Design
Dreamweaver FrontPage forum
JavaScript Forum XML forum
Style Sheets VRML
Forum Jump:
Rate This Thread:

 

XML RSS Feed web design latest articles Syndicate our forum via XML or simple JavaScript

Web Design archive  Database administration help  


Top Home  -  Register  -  Control Panel   -  Memberlist  -  Calendar  -  Faq  -  Search Top