HTML 5 Tags:
HTML 5 tags are many in numbers or figures but we discuss basics tags. HTML 5 Tags makes it easier approximately.
HTML 5 Heading Tags:
DOCTYPE html> // Declare Document type
Knowledge idea
// Heading tags you can use h2,h3,h4..
HTML 5 Paragraph Tags:
DOCTYPE html> // Declare Document type
Knowledge idea
// Paragraph tags
HTML 5 Images Tags:
We use “alt” because it’s extremely important and recommended by experts. Google Crawl your images then “alt” tag working as an image title.
DOCTYPE html> // Declare Document type // Image tags, alt tag criteria is important for SEO and recommended![]()
HTML 5 Hyper Link Tags:
<html> <body> <a href="https://www.knowledgeidea.com" alt="">Knowledge idea</a> </body> <html>
HTML 5 Font Tags:
<html> <body> <font size="5"color="#00AFEF"face="aller display">How are you friend?</font> </body> <html>
Firstly We use Color code in color tag . You may use simple color name like “Red” & “Green” Above example output look like this. Color codes built efficiency in your development. Secondly we use Font Family so you can use each one which you like to use. Font size is a common thing hope you know well.
HTML 5 Text Format Tags:
<html> <body> <p> How are you friend // Paragraph Format <p> <b> How are you friend </b> // Bold Format <p> <i> How are you friend </i> // italic Format <p> <em> How are you friend </em> // Point out/Headline Format <p> <code> How are you friend </code> // Computer Output Format </p></html> </body>
Here we clear some differences b/w and tags. Tag express strong important for its contents and doesn’t effect on the meaning of sentences. On the other Hand Tag express stress emphasis of its contents and does effect on the meaning of sentences. Here is the screenshot of the above example.