Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Html Email Links

An email link is just like a standard link, except that, instead of sending you to another page,  the link opens the associated email application so you can email the individual directly. Email links are especially useful for contact emails for individuals, staff members on a company site, and customer service and support feedback. Email links use the mailto: attribute along with the HRef attribute and the recipient's email address to accomplish this function .  The mailto: attribute to create an email link <a href="mailto:test@example.com">email...

Adapting Your Site to Different Window Sizes

Modern browsers like Internet Explorer 10 support the width and height properties of the W3C Working Draft CSS Device Adaptation. This gives Web developers a simple tool to control automatic content scaling across various window dimensions. In particular, it enables sites to easily adapt to Windows 8 browsing on touch-enabled tablet devices in the snapped view and in portrait orientatio...

All HTML Interview Questions And Answers

What is HTML? Hyper Text Markup Language,which allows an individual special code to create web pages to be viewed on the Internet.It’s the default markup language used for displaying web pages. What is a DOCTYPE? <!DOCTYPE> is used to inform the browser as to which version of HTML the current web page is using. The doctype declaration refers to a Document Type Definition (DTD) which specifies the rules for the markup language, What are meta tags and why it is used? The <meta> tag always goes inside the head element. They can...

W3C node types

Node type Numeric type value Description Element - Represents an element. Attribute - Represents an attribute. Text-3 Represents character data in an element or attribute....

HTML 4.01 and XHTML 1.0 and 1.1 standards

As defined in the HTML 4.01 and XHTML 1.0 and 1.1 standards, a <div> tag divides your document into separate, distinct sections. It may be used strictly as an organizational tool, without any sort of formatti...

Html Core Attributes

Prior to HTML 4.0, few attributes could be used consistently for all the HTML tags. HTML 4.0 changed this, defining a set of 16 core attributes that you can apply to almost all the elements in both HTML 4.01 and XHTML 1.0. For brevity, we list these core attributes   table that follow...

Html Grammar

The rules are in alphabetical order. The starting rule for an entire document is named html_document. a_content ::= heading   | text a_tag ::= <a>     {a_content}0     </a> abbr_tag ::= <abbr> text </abbr> acronym_tag ::= <acronym> text </acronym> address_content ::= p_tag   | text address_tag ::= <address>     {address_content}0     </address> applet_content ::= {<param>}0     body_content applet_tag ::= <applet>...