Articles → HTML → Head Tag In HTML
Head Tag In HTML
Purpose Of The Head Tag
- Title
- Styles
- Scripts
- Metadata
- Links
Syntax
Example
<html>
<head>
<title>head section demo</title>
<meta charset="UTF-8" />
<script src="source_of_js_file">
// We can define scripts here
</script>
<style type="text/css">
/*Define styles*/
</style>
<link href="style_file_link" rel="stylesheet" />
</head>
<body></body>
</html>
Browser Support
Internet Explorer | Firefox | Chrome | Safari | Opera | Edge |
---|
Yes | Yes | Yes | Yes | Yes | Yes |