

- 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 to create a Bibliography with HTML?
The bibliography is a section where a list of books referred is mentioned. With HTML, you can easily create a Bibliography. For that, we will be using a <ol> tag to list the books as well as <cite> to add a title of the work.
The <cite> tag is also used to add work title a song, a painting, a movie, etc. It indicates citation and whatever comes inside the tag represents work title.
Example
Let’s see how to add a bibliography in HTML
<!DOCTYPE html> <html> <head> <title>Bibliography</title> </head> <body> <h1>Bibliography</h1> <ol> <li> <p>E.Balagurusamy, <cite>Programming with JAVA: A Primer</cite>, 3rd edition, (2007)</p> </li> <li> <p>Reto Meier, <cite>Professional Android 4 Application Development</cite>, 3rd edition, (2012)</p> </li> </ol> </body> </html>
- Related Questions & Answers
- How to create a download link with HTML?
- How to create a file upload button with HTML?
- How to create a signup form with HTML and CSS?
- How to create a weight converter with HTML and JavaScript?
- How to create a temperature converter with HTML and JavaScript?
- How to create a length converter with HTML and JavaScript?
- How to create a speed converter with HTML and JavaScript?
- How to create a responsive Image Grid with HTML and CSS?
- How to create a draggable HTML element with JavaScript and CSS?
- How to create a link to send email with a subject in HTML?
- How to create a website without using HTML?
- How to create a bookmark link in HTML?
- How to create a collapsed border in HTML?
- How to create a floating Layout in HTML?
- How to create a flexbox Layout in HTML?
Advertisements