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

HTML cite Attribute

Thuộc tính cite của phần tử được sử dụng để đặt URL nguồn của trích dẫn. Nguồn sẽ không được hiển thị trên trang web, nhưng nó có lợi cho trình đọc màn hình.

Bây giờ chúng ta hãy xem một ví dụ để triển khai thuộc tính cite của phần tử -

Ví dụ

<!DOCTYPE html>
<html>
<body>
<h2>What we want?</h2>
<p>PETA states,
   <q cite="https://legacy.peta.org/why-give/">We are the largest animal rights organization in the 
   world, with more than 6.5 million members and supporters worldwide. We need your continued 
   support in order to stop cruelty to animals wherever it occurs.</q>
</p>
</body>
</html>

Đầu ra

HTML  q  cite Attribute

Trong ví dụ trên, chúng tôi đã đặt báo giá bằng thẻ -

<p>PETA states,
<q cite="https://legacy.peta.org/why-give/">We are the largest animal rights organization in the world, with more than 6.5 million members and supporters worldwide. We need your continued support in order to stop cruelty to animals wherever it occurs.
</q>

Vì trích dẫn được lấy từ trang web chính thức, nên luôn cần ghi nhận bằng cách trích dẫn hoặc sử dụng thuộc tính cite -

cite="https://legacy.peta.org/why-give/"