HTML documents start with type declaration: <!DOCTYPE html>.
The HTML document begins with <html> and ends with </html>.
HTML body is visible part of the document between <body> content posted </body>.
In HTML there are 6 heading tags <h1> to <h6>
Tag for the paragraph is <p>This is a paragraph. </p>
What it the html code to create a link a
For link html tag <a href=“https://www.xxxxy.com”>This is a MyLink</a>
Alt text
Alt, or alternative, text is provided as an attribute to the <img> tag to describe the image to the screen reader. This is useful when the image is not loaded in the browser.
<img src="https://test/file:BlueBook.jpg:" alt="A blue book"/>
Semantic tags Its bout styling in a page like bold ,italic etc..
eg: <b> -indicate bold and <i> -indicate text to be italic and similary there are other tags do the same <strong> and <em> .
ARIA -Accessible Rich Internet Application
It defines variety of markup extension and its usually HTML5 attributes.
Leave a Reply