Results 1 to 8 of 8

Thread: Tutorial Sites

  1. #1
    Join Date
    Sep 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Tutorial Sites

    Hi All,

    I was curious if people could post some good Tutorial websites for Javascript.

    For Instance -- for Flash I use:
    Flashkit.com
    Actionscript.org
    gotoandlearn.com
    Ultrashock
    etc.

    Are there any good "Tutorial" javascript sites that I can check out? TY!

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Quote Originally Posted by draac.com
    For text you wish to resize that are not headings.
    You would use these font tags.
    These tags are used in pairs.

    <FONT SIZE="1"> and </FONT>
    There are two types of text breaks.
    That will break the text to the next line.
    First is text break tag <BR>
    This will break the text to the very next line.
    This can also be used to break an image
    to the next line. The <BR> can
    be used as many times as you like
    to get the desired spacing between items.
    Quote Originally Posted by handleidinghtml.nl
    Code:
    <HTML>
    <HEAD>
    <TITLE>Dit is mijn eerste homepage</TITLE>
    </HEAD>
    <BODY>
     
    </BODY>
    </HTML>
    *wince* Avoid.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

    Default

    The first one, I agree, but the two other ones are fine by me.
    In this forum I read a lot of experts (like you), mostly probably pro's, and sometimes they say that f.ex. tables are bad and should be changed into div's. But why change something if it is still valid, easy to use and above all, looking good ?
    Do you need to throw a way 'old technics' because new ones came up ?Sometimes I wonder if all the new stuff that comes up, is really better than the old stuff... Just my thoughts ...

  6. #6
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

    Default

    Like on that site http://www.howtocreate.co.uk/ I see
    <em> and <strong>
    why not <b> and <i> ? Works fine for me !

  7. #7
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Might as well throw in my current boiler plate on this:

    See:

    http://www.dynamicdrive.com/forums/s...ad.php?t=15425

    and:

    http://www.dynamicdrive.com/forums/s...ad.php?t=21570

    This is one good site that I am not sure if it is covered in the above discussions:

    http://www.anybrowser.org/campaign/abdesign.html

    Other than that, it really depends upon your style of learning. If you are more comfortable in the classroom, take a course. However, that will probably only get you the basics and may or may not be the best source of accurate and/or up to date information. The same is generally true of books. O'Reilly's books are generally fairly good and you can look at:

    http://online-books.oreilly.com/

    and:

    http://www.oreilly.com/

    to help you decide if they are for you.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  8. #8
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    <em> and <strong> and <b> and <i> differ in purpose. <em> and <strong> specify the semantics of the document. <em> states that "the text between these tags is emphasised." How that actually happens (by default, of course it may be overridden by stylesheets) is up to the browser. If it's a screen reader, for example, it might read emphasised text in a louder voice, or with more stress. <b> doesn't tell the browser any of that; it just says "this text should be bold" without giving a reason why. Screenreaders probably shouldn't read the text any differently, since the boldening may be purely for stylistic purposes. This is one of many disadvantages of presentational markup.
    The first one, I agree, but the two other ones are fine by me.
    Why? The <font> tag is at least valid HTML Transitional, but the document without the DOCTYPE isn't even that. The second is worse than the first. The third is as bad as the first, using presentational markup, plus it's actually abusing a semantic element in order to do it. Still not as bad as the second though.
    In this forum I read a lot of experts (like you), mostly probably pro's, and sometimes they say that f.ex. tables are bad and should be changed into div's.
    Semantic markup plays a big part here too. Tables aren't meant for layout; it's a reasonable assumption by the browser that a table will contain tabular data. Of course, with tables there's a fairly serious slowdown in loading speeds to consider as well, and increased bandwidth usage, although that's often only a problem on very high-traffic or low-budget sites.
    But why change something if it is still valid, easy to use and above all, looking good ?
    It's not valid. The automated validator is not a conclusive examination; it's incapable of concluding whether markup is semantic or not, due to the limitations of computers. Semantics have, by definition, to do with the meaning of the page, and the validator has no idea about the meaning of the content you're feeding it. However, non-semantic markup is still against the standards.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •