Home Messages Index
[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index

Re: HTML guide for newbies.

  • Subject: Re: HTML guide for newbies.
  • From: Shailesh Humbad <noreply@nowhere.com>
  • Date: Tue, 30 Nov 2004 04:18:22 GMT
  • In-reply-to: <zsQqd.5477$6o5.1087@trnddc08>
  • Newsgroups: alt.html
  • Organization: Road Runner High Speed Online http://www.rr.com
  • References: <zsQqd.5477$6o5.1087@trnddc08>
  • User-agent: Mozilla Thunderbird 0.9 (Windows/20041103)
  • Xref: news.mcc.ac.uk alt.html:271865
Inkspot wrote:
Can anyone suggest a good website (or book) for someone new to the webmaster game?

I've been trying to get my lists to output justified text, but haven't had much luck. Tried google-searching for the answer, but each site that I went to provided no help. Saw a <ul align="justify"> suggestion, but it didn't work :(

I'm picking things up as I go along, sometimes with much head-ache; it would be far easier to have a one-stop spot to get detailed answers.

An oldie, but goodie: http://www.blooberry.com/indexdot/html/

A book you want to get: Dynamic HTML - The Definitive Reference 2ed
http://www.amazon.com/exec/obidos/ASIN/0596003161/somacon-20

Neither are for total newbies.  If you are a total newbie, I suggest:
http://archive.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimer.html

Your question indicates non-newbieness. What will increase your skill is making test pages and trying them on different browsers. Then, to reach guru status, get 100% from the free validators at:

HTML: http://validator.w3.org/
CSS: http://jigsaw.w3.org/css-validator/

To get justified text in a list, one way is:

<style type="text/css">
UL { text-align:justify; }
</style>
<ul>
<li>This text should be justified.
<li>As should this text be justified.
</ul>

[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index