
What are HTML Tags?
Tags Are Specified word or Character used to Define Tags Inside HTML.They begin with the < Open Bracket symbol and end with the > Closing …
Read MoreHTML Provide Lots Of tags. But Head Tag Define Web Page Information On Browser. Head Tag Not be shown directly inside the Browser like Body Tag.In Head Tag, We Define Title, Add CSS File, JS File, icons, and metadata.
<html>
<head>
<title> Title Here </title>
</head>
</html>
Syntax:
<head>
<title> Title Here </title>
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello!</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is a simple paragraph.</p>
</body>
</html>
Tags Are Specified word or Character used to Define Tags Inside HTML.They begin with the < Open Bracket symbol and end with the > Closing …
Read MoreHTML tags can also have their Attributes, which are Contain Some Extra Information. In most cases, attributes are defined in name=“value” …
Read More