Category: References

  • Events Reference

    When users visit your website, they do things like click various links, bring mouse over text and images etc. These are examples of what we call events in JavaScript and VBScript terminologies. We can write our event handlers using JavaScript or VBScript and can specify some actions to be taken against these events. Though these…

  • Attribute Reference

    HTML attributes define the characteristics of an HTML element and are placed with the element’s opening tag. These are special words with specific meaning and are used either to change the default functionality or to add more functionalities to an element. Here you will find the list of all HTML attributes with their usages and examples.…

  • Tags Reference

    HTML tags with code examples of each tag like tables, forms, anchor, image, heading, marquee, textarea, paragraph, title, quotes, formatting, div, code etc. What are HTML Tags? HTML tags are similar to keywords, which specify how a web browser will format and display content. A web browser can differentiate between simple content and HTML content…

  • Cheat Sheet

    This HTML cheatsheet is a summary of theHTML tutorial. Here, you will find quick information about HTML concepts, starting from the basic structure to advanced elements. Basic HTML Structure The following is the basic structure of an HTML document: <!DOCTYPE html><html lang=”en”><head><meta charset=”UTF-8″><meta name=”viewport” content=”width=device-width, initial-scale=1.0″><title>Webpage’s Page Title</title></head><body><!– Webpage’s content goes here –></body></html> Heading Tags…