UK[ˈhedə(r)] US[ˈhɛdɚ]
n. Header; cutting machine; (automatically added to the top of each page when the computer prints) header; header
Plural: headers
html header tag syntax
Function: Define the header of the document (introduction information).
Description: <header> tag is a new tag in HTML 5.
Note: Internet Explorer 8 and earlier versions do not support the <header> tag.
html header tag example
<!DOCTYPE html> <html> <body> <article> <header> <h1>PHP实战天龙八部</h1> <p>微信支付视频教程:</p> </header> <p>微信支付是当前最流行的支付方式之一,本课程较详细的介绍了如何接入微信支付SDK,以及在公司实际开发中的要注意的问题</p> </article> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance