Computer >> Máy Tính >  >> Lập trình >> HTML

Thẻ HTML

Thẻ trong HTML dùng để đặt tiêu đề cho tác phẩm. Đây có thể là tiêu đề của một bộ phim, tiêu đề của một bài hát, tiêu đề của một bức tranh, v.v.

Bây giờ chúng ta hãy xem một ví dụ để triển khai thẻ cite trong HTML -

Ví dụ

<!DOCTYPE html>
<html>
<body>
   <h1>Books</h1>
   <h2>Java</h2>
   <p>Refer the following books to learn Core Java:</p>
   <p><cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao.</p>
   <p><cite>Java - The Complete Reference</cite> by Herbert Schildt.</p>
   <h2>AngularJS</h2>
   <p>Refer the following books to learn AngularJS:</p>
   <p><cite>Pro AngularJS</cite> by Adam Freeman</p>
   <p><cite>Learning AngularJS: A Guide to AngularJS Development</cite> by Ken Williamson</p>
</body>
</html>

Đầu ra

Thẻ  cite  HTML

Trong ví dụ trên, chúng tôi đã đặt tiêu đề tác phẩm bằng thẻ cite -

<h2>Java</h2>
<p>Refer the following books to learn Core Java:</p>
<p><cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao.</p>
<p><cite>Java - The Complete Reference</cite> by Herbert Schildt.</p>

Như bạn có thể thấy, tên sách được đặt bằng -

<cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao