Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML แท็ก


แท็ก ใน HTML ใช้เพื่อตั้งชื่องาน อาจเป็นชื่อภาพยนตร์ ชื่อเพลง ชื่อภาพวาด เป็นต้น

ให้เราดูตัวอย่างการใช้แท็กอ้างอิงใน HTML -

ตัวอย่าง

<!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  แท็ก

ในตัวอย่างข้างต้น เราได้ตั้งชื่องานโดยใช้แท็กอ้างอิง −

<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