What is Meta Tag in HTML?
The
<meta> tag provides information HTML Web Page.
Support Browser
- Google Chrome.
- Safari Browser.
- Opera.
- Mozilla Firefox.
Example:
Keyword Meta Tag :
An example is Keyword <meta> tag For Ex: TML, python, Java This Is Keyword
to Your web page.
1. <html>
2. <head>
3. <title>Meta Tag Demo</title>
4. <meta name="keywords" content="HTML page, tags,"/> <!-- HTML, Python Etc -->
5. </head>
6. <body>
7. <table>
8. <tr>
9. <td>
10. <h1>Hello Infodpsoft</h1>
11. </td>
12. </tr>
13. </table>
14. </body>
Author Meta Tag :
- <html>
- <head>
- <title>Meta Tag Demo</title>
- <meta name="keywords" content="HTML page, tags,"/> <!-- HTML, Python Etc -->
- <meta name="author" content="infodpsoft" />
- </head>
- <body>
- <table>
- <tr>
- <td>
- <h1>Hello Infodpsoft</h1>
- </td>
- </tr>
- </table>
- </body>
- </html>
Description Meta Tag :
You can add Description about webpage.
- <html>
- <head>
- <title>Meta Tag Demo</title>
- <meta name="keywords" content="HTML page, tags,"/> <!-- HTML, Python Etc -->
- <meta name="author" content="infodpsoft" />
- <meta name="description" content=" " />
- </head>
- <body>
- <table>
- <tr>
- <td>
- <h1>Hello Infodpsoft</h1>
- </td>
- </tr>
- </table>
- </body>
- </html>
List of Meta Tag:
<meta name="keywords" content="Tag,keyword"/>
<meta name="description" content="150 words"/>
<meta name="copyright" content="website name, company name"/>
<meta name="subject" content="your website's subject">
<meta name="author" content="author name"/>
Reference website
http://tutorialspoint.com
https://www.w3schools.com
<meta name="description" content="150 words"/>
<meta name="copyright" content="website name, company name"/>
<meta name="subject" content="your website's subject">
<meta name="author" content="author name"/>
How to Create a CSS Box Model in Html with Text - HTML | infodpsoft
HTML Heading tags html | infodpsoft
Reference website
http://tutorialspoint.com
https://www.w3schools.com
No comments: