Jump to content

Grand_master

Members
  • Posts

    14
  • Joined

  • Last visited

Posts posted by Grand_master

  1. Plus if you have a small portfolio with some sames of your work, that speaks louder than a piece of paper.
    Hmmmm. I think here you are definitely right. Why didn't I think of that before. (and to think I could've spent those $60 on another latin grammar) Well, live and learn. :)
  2. Yeah, in Canada, most job ads ask for University or college degrees or lots of industry experience. Besides, just being certifie in HTML will get you nowhere. You need much more than that to obtain a full time web development job these days.The opportunities I see near where I live require(X)HTML, CSS, JavaScript, XML, SQL Server or MySQL, and ASP.Net or JAVA(JSP) or PHP.

    Okay, then. But what if you just wanted a piece of paper to prove you are capable of manipulating XHTML, but your job isn't creating and maintaining websites, just translating them (I'm a Translator)? I mean, that's gotta be worth something.
  3. Wow, everyone seems to have some negative opinion about W3Schools, especially the moderators :) Why is that? I'm starting to regret having spent the $60 dollars. But, then again, I only wanted the certificate to show people I'm capable of manipulating XHTML/CSS, and not because I'm making it my career (which is, hopefully, a BA in Philosophy).

  4. I was wondering how many forum members are certified for XHTML/CSS? And in what way has the certification improved your career/life?I myself got certified this morning by W3Schools, but missed the Excellency Degree by just one question :) ... Ah well, better luck next time.

  5. I have a problem that frankly baffles me. I have two different divs for layout, each has its own id (#left and #subleft); within each div, there's a unordered list, again, with special ids; within the lis, I had links, and one of them was given id="current" and was highlighted to let the reader know where he is. This morning I sent the files to be validated. Besides a few errors like adding an extra (") to the syntax, everything seemed fine, until I realised I had used id="current" twice, one on div#left and another on div#subleft. Ok. The solution, as everyone knows, is to substitute id="current" with class="current" (I need two highlighted links to let the reader know where a subsection is located).The problem, to my surprise, was that, now the webpage validated, but the highlights disappeared. The original code was:

    ul li a#current {background-color:something}

    Then I switched to class:

    ul li a.current {background-color:something}

    And the highlights disappearI tried eliminating first ul (and leave li a.current), then li (and leave a.current), then adding ul again (ul a.current)... nothing... until: ul#side li a.current, that is, I typed a named ul and it works. But I want both links highlighted. Why is it that I must code with id'd uls? Shouldn't the second code above work as is?Thanks for any input you might have.Thanks!

  6. Quick question. Is it essential to add a property value of clear:both to an element that comes after another element, whose width is 100% and may be floated?Like here, where would a clear be needed, and why would it bee needed if the 100% width prevents anything from floating alongside it?

    #navigation {width:100%; float:left... plus other things to make a horizontal bar}#content {width:100%; float:left...plus other things that require this to be floated}#footer {text-align:right}

    Thanks, guys.

  7. I have a simple question:What is the difference between an element with display:block and that is then floated, and another element with display:inline? Context: I see many tutorials on how to create horizontal navigation bars, some use display:inline (and that makes sense to me), but others use display:block and then float the list. What is the logic behind this?Thanks!

  8. Of course. :) Thanks sbrownii. I was under the silly impression that the description and keyword meta tags were to be the same for the entire website. Okay, so I should put meta tags in the language of the page...And just for curiosity, what if I had mixed languages on a single page?

  9. What do you do when your website is written in more than one human language (i.e., English, Spanish, Latin...), and you want people from different parts of the world to find the keywords in those languages? Do you create several meta elements with the same name ('keywords'), but with different values for 'lang'?Thanks :)

  10. Hello everyone,I'm new here (to the forum, not to W3Schools), and I have a question: In the HTML tutorial there's a section called "References," there we are offered a list of all the tags used in HTML; however, the W3C also offers the same basic list, but they do not call it a tag list, they call it the element index. Furthermore, the W3C has this to say about elements (I hope I'm not violating any copyrights by providing this little snipet):

    Elements are not tags. Some people refer to elements as tags (e.g., "the P tag"). Remember that the element is one thing, and the tag (be it start or end tag) is another. For instance, the HEAD element is always present, even though both start and end HEAD tags may be missing in the markup.
    So, wouldn't it be more appropriate to rename the page "tag list" to "element list"? I ask this with no other intention than to help W3Schools. :) P.S.: Oh, and thank you for providing a free resource for IT knowledge.
×
×
  • Create New...