HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Search results

  1. C

    Browser query

    Yes it does. Browser compatibility is a common issue with web development. Since you're a newbie, you can visit W3schools.com. They have a list of most, if not all, html tags and which browsers they work on.
  2. C

    Problem with my validation script!

    I would suggest using this instead. Use an input button instead of a submit button. <input align="right" type="button" name="Submit" value="Submit" onClick="submitForm()" /> <script> function submitForm(){ if(validateForm()){ document.getElementById("ExamEntry").submit(); } } </script
  3. C

    When did you start using HTML and Why?

    I started learning HTML back in high school simply because the teacher required us to learn it. It was in the curriculum. The basics were simple enough. I learned the rest on my own.
Back
Top