Forum: HTML and CSS Jul 22nd, 2008 |
| Replies: 4 Views: 761 The two important ones are keywords and description. They both go in the head of the document. Metadata help search engines find content relative to what was searched for. Let's look at this page:... |
Forum: HTML and CSS Jul 18th, 2008 |
| Replies: 2 Views: 509 Once you get comfortable with the xhtml syntax, look into a server side language. At some point you'll find that xhtml won't full fill all of your needs and will need some server interaction. If you... |
Forum: HTML and CSS Jun 15th, 2008 |
| Replies: 4 Views: 1,936 The reason is that each browser applies its own default stylesheet to your page. What this means is that each browser adds a certain amount of margin, padding, line height... to each element. The... |
Forum: HTML and CSS Jun 13th, 2008 |
| Replies: 4 Views: 1,701 No, CSS is not hard to learn but, it does take time to master. You'll catch the basic concepts in a day or so but, because you can manipulate the design in so many different ways, it will take a... |
Forum: HTML and CSS Jun 7th, 2008 |
| Replies: 4 Views: 713 You want something like this? This textbox clears when the user clicks it.
<input type="text" onfocus="this.value=''; this.onfocus=null;" name="notes" value="enter ticket number here" /> |
Forum: HTML and CSS Mar 25th, 2008 |
| Replies: 8 Views: 2,023 An easy way to validate is to install the free web developer (https://addons.mozilla.org/en-US/firefox/addon/60) add-on in Firefox. Once installed, you can simply press Ctrl+Shift+A and the W3C... |
Forum: HTML and CSS Mar 4th, 2008 |
| Replies: 2 Views: 995 External css should not contain style tags (<style type = "text/css"></style>) at the beginning and end like they do when putting them inline. If the styles aren't showing up, they probably aren't in... |