Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 태그

<시간/>

HTML의 태그는 작품의 제목을 설정하는 데 사용됩니다. 영화 제목, 노래 제목, 그림 제목 등이 될 수 있습니다.

이제 HTML에서 cite 태그를 구현하는 예를 살펴보겠습니다 -

예시

<!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>

출력

HTML  cite  태그

위의 예에서 우리는 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>

보시다시피 책의 제목은

를 사용하여 설정됩니다.
<cite>Core Java: An Integrated Approach</cite> by R. Nageswara Rao