Share:
Notifications
Clear all

Earn While Learning Web3 Programming>> Start Here FREE!!!

[Solved] What Is HTML Meta Element ?

2 Posts
2 Users
3 Reactions
378 Views
1
Topic starter

EXERCISE:

i. Watch the above lesson video and also read through the recommended resources. Then, answer following questions

ii. What Is HTML Meta Element?

iii. How To Write "meta" Element with meta tag in HTML?

iv. Summarize in your own word in this forum below:
(NOTE: please, don't just copy paste from other students - instead answer in your own word base on your level of understanding the lesson and resources)

 

 

NOTE:

This Is An Exercise From Our FREE COURSE with CERTIFICATION:

 HTML For Web3 dApp Development Course

(If you have not enrolled yet, you can join the course totally for FREE).

 

2 Answers
1
Topic starter

What Is HTML Meta Element ?

- HTML Meta Element is placed inside HTML head element

- it is used to specify the HTML document code meta data like the character encoding, browser compactibility and more.

- How To Write "meta" Element with meta tag in HTML
   <meta>
            <meta charset="UTF-8"> (specifies the character encoding of the HTML document)
            <meta http-equiv="X-UA-Compatible" content="IE=edge"> (specifies the browser compactibility                      of the HTML document)
           <meta name="viewport" content="width=device-width, initial-scale=1.0"> (specifies the device display attribute of the HTML document)

1

HTML META ELEMENT

It is placed inside HTML head element

It provide various metadata such as application name or specifying the document's character encoding

It specifies HTML document code metadata  like the browser compatibility and character encoding

 

HOW TO WRITE HTML META ELEMENT

  <meta>
            <meta charset="UTF-8"> (specifies the character encoding of the HTML document)
            <meta http-equiv="X-UA-Compatible" content="IE=edge"> (specifies the browser compactibility                      of the HTML document)
           <meta name="viewport" content="width=device-width, initial-scale=1.0"> (specifies the device display attribute of the HTML document)

 

Share: