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

จะระบุใบเสนอราคาแบบยาวในเอกสาร HTML ได้อย่างไร


ใช้แท็ก

เพื่อระบุใบเสนอราคาแบบยาว แท็ก HTML
ใช้เพื่อรวมใบเสนอราคาแบบยาว (เช่น ใบเสนอราคาที่ครอบคลุมหลายบรรทัด) ควรมีเฉพาะองค์ประกอบระดับบล็อกเท่านั้น ไม่ใช่แค่ข้อความธรรมดา

ต่อไปนี้คือแอตทริบิวต์ −

แอตทริบิวต์
ค่า
คำอธิบาย
cite จะระบุใบเสนอราคาแบบยาวในเอกสาร HTML ได้อย่างไร
URL
URL ของใบเสนอราคา หากนำมาจากเว็บ

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้แท็ก

ในเอกสาร HTML -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML blockquote Tag</title>
   </head>
   <body>
      <blockquote>Browsers generally render blockquote text as indented text. If your quoted text needs to display within a non-quoted paragraph, you should use the HTML q tag. Most browsers surround q text with quotation marks.</blockquote> <q>Browsers generally render blockquote text as indented text. If your quoted text needs to display within a non-quoted paragraph, you should use the HTML q tag. Most browsers surround q text with quotation marks.</q>
   </body>
</html>