Jump to content

dennylin93

Members
  • Posts

    31
  • Joined

  • Last visited

About dennylin93

  • Birthday 03/24/1993

Previous Fields

  • Languages
    XHTML, CSS

Contact Methods

  • Website URL
    http://dennylin93.wordpress.com/
  • ICQ
    0

dennylin93's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Use (X)HTML Transitional.http://www.w3schools.com/tags/tag_iframe.asp
  2. Problem solved.
  3. Here is something like a guide from W3C: http://www.w3.org/QA/Tips/use-links. There is also a tutorial on W3Schools: http://www.w3schools.com/tags/tag_link.asp You can check out the W3C website (http://www.w3.org/) and look at their source.In order to make something like "previous" or "next" visible for clicking, you have to add it within the body element.
  4. I'm trying to create a website in both English and Chinese, so I am trying to make it show up the browser's default language. I saw a site (http://jigsaw.w3.org/css-validator/) that can automatically show the language that is set as the browser's default. How can I do this? Thanks in advance.
  5. Never mind. I found out after I fiddled with it for a few hours.
  6. I was trying to make a hide/show function with JS, but I got stuck. I was trying to make it like the ones on Wikipedia: http://en.wikipedia.org/wiki/TaipeiEx. Can anyone help me with this? Thanks in advance.
  7. Thanks for the suggestions. I'll try them when I have time.
  8. Can anyone give me a guide or instructions on how to install Apache 2.2, php 5.2, and MySQL? I tried it once by myself, and it turned into a complete mess. Thanks in advance.
  9. You can use AS in Flash (ActionScript). Put this on your last frame, or whatever frame you want. getURL("***URL here***"); You might want to add this to your Flash along with the getURL thing: stop();
  10. JavaScript doesn't have to be validated, however, you have to make sure that most of the browsers support what function you are going to use otherwise your site might not be available to others. I prefer to make a new .js file for JavaScript because it keeps the XHTML file tidier, and I find it easier to edit.Most Markup validators can validate XHTML files. Try the W3C Markup Validation Service. There is also a CSS Validation Service. Another tool is Unicorn, a universal conformance checker, by W3C. It can check (X)HTML and CSS at the same time. Other tools by W3C like the Link Checker are also useful.
  11. I was reading the WCAG guidelines, and I saw this sentence: Create a logical tab order through links, form controls, and objects. [Priority 3] For example, in HTML, specify tab order via the "tabindex" attribute or ensure a logical page design.Already found out.
  12. The alt attribute wasn't made to make text show up on an image when you put your mouse over it. It is supposed to show up when the browser is unable to access an image. Internet Explorer doesn't use it properly, but Firefox does. If you want to make text show up while your mouse is over it, you can use "title": <img src="where your file is" alt="text here" title="text here" width="width of image" height="height of image" /> If you want stuff to show up while your mouse is over text, you can use: <a href="hyperlink (optional)" title="text here">text here</a> Delete the "href" part if you're not using a hyperlink.
  13. Thanks. I found out that I can also use % in CSS: table.class { width: 50%; margin: 0 auto;}
×
×
  • Create New...