HTML header label and header label
<Header>
head
The element contains all the header label elements that can be added to the header area. The element labels are as follows: title
,style
,meta
,link
,script
,noscript
,base
<Title>
Define the titles of different documents. Defines the title of the browser toolbar. The title displayed in favorites when a webpage is added to favorites. The title displayed on the search engine result page.
Eg: <title> I am the title </title>
<Base>
The tag describes the basic link address/Link Target, which serves as the default link of all link tags in the HTML document.
eg: <base href="www.beck.ren/images/" target="_blank"></base>
<Link>
A tag defines the relationship between a document and external resources. It is usually used to link a style sheet.
eg: <link type="text/css" href="../index.css">
<Style>
The tag defines the reference address of the HTML document style file. The content specifies the style to render the HTML document
Eg: <style> * {margin: 0; padding: 0 ;}< style> // css
<meta>
MetaTags describe some basic metadata. Tags provide metadata. The metadata is not displayed on the page, but will be parsed by the browser. META elements are usually used to specify the web page description, keywords, the last modification time of the file, author, and other metadata. Metadata can be used in browsers (how to display content or reload pages), search engines (keywords), or other Web Services.
1 eg: 2 // define the keyword 3 <meta name = "keywords content =" HTML, CSS, XML, XHTML, javaScript ""> 4 // define description content 5 <meta name = "description" content = "Free Web tutorials on HTML and CSS"> 6 // define author 7 <meta name = "author" content = "Hege Refsnes"> 8 // defines to refresh the current page every 30 seconds 9 <meta http-equiv = "refresh" content = "30">
<Script>
The tag defines the JS file reference address of the HTML document.
eg: <script src="loading.js"></script>