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

HTML แท็ก


แท็กฐานใน HTML ใช้เพื่อตั้งค่า URL พื้นฐานสำหรับเอกสาร HTML ตัวอย่างเช่น URL พื้นฐานเป็น https://example.com/tutorials สำหรับ URL ที่เกี่ยวข้องทั้งหมด เช่น /html, /java, /jquery เป็นต้น ซึ่งสุดท้ายแล้วจะเป็น −

https://example.com/tutorials/html
https://example.com/tutorials/java
https://example.com/tutorials/jquery

หมายเหตุ :แท็ก ไม่มีแท็กปิด เช่น ไม่จำเป็นต้องลงท้ายด้วย

ต่อไปนี้เป็นคุณลักษณะ -

  • href :ตั้งค่า URL พื้นฐานสำหรับ URL ที่เกี่ยวข้องทั้งหมดในหน้า
  • เป้าหมาย: เป้าหมายเริ่มต้นสำหรับไฮเปอร์ลิงก์และฟอร์มทั้งหมด ค่าสามารถเป็น _blank, _parent, _self, _top และชื่อเฟรมได้

ให้เรามาดูตัวอย่างการใช้งาน element−

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<base href="https://www.example.com/tutorials/">
</head>
<body>
   <h2>Tutorials List</h2>
   <p><a href="java.html">Java Tutorial</a></p><p>(This will act as          https://www.example.com/tutorials/java.html)</p>
   <p><a href="jquery.html">jQuery Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/jquery.html)</p>
   <p><a href="blockchain.html">Blockchain Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/blockchain.html)</p>
   <p><a href="python.html">Python Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/python.html)</p>
</body>
</html>

ผลลัพธ์

HTML  base  แท็ก