

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we add extra information about an element in HTML?
Use the title attribute to add extra information in an HTML document.
Example
You can try to run the following code to implement title attribute −
<!DOCTYPE html> <html> <head> <title>HTML base Tag</title> <base href = "https://www.qries.com" /> </head> <body> Qries.com <img src = "https://www.qries.com/images/banner_logo.png" /> </body> </html>
- Related Questions & Answers
- How do we add the maximum number of characters allowed in an element in HTML?
- How do we add glossary definitions in HTML?
- How do we add bold text in HTML?
- How do we add document title in HTML?
- How do we add a comment in HTML code?
- How do we add a definition term in HTML?
- How do we add a noframe section in HTML?
- How do we add a noscript section in HTML?
- How do we add a menu list in HTML?
- How do we add a table row in HTML?
- How to add an address element in HTML?
- How do we add a push button to HTML?
- Include information about the document in HTML
- How do we add a sample computer code in HTML?
- How do we include an anchor in HTML?
Advertisements