HTML in A Day For Digital Marketing Pro Course
HTML in A Day For Digital Marketing Pro Course
Note: In rare cases, for a few Tags, there will be NO Closing HTML Paragraphs
Tag. Those are called Empty Tags. We should write an empty All the TEXT other than HEADINGS should be declared as
tag as <br /> <hr /> <img /> etc. PARAGRAPHS using <p> element.
Note: All Empty Tags are HTML Elements themselves. META Information (In the HEAD Element)
Defining Character Set:
HTML Program Structure <meta charset="UTF-8">
<!DOCTYPE html>
<html> Defining Page Description:
<head> <meta name="description" content="DESCRIPTION HERE">
META INFORMATION
</head> Defining Page Keywords:
<meta name="keywords" content="kw1, kw2, kw3">
<body>
VISIBLE DATA ON THE PAGE Optimizing the Page for Multiple Devices:
</body>
<meta name="viewport" content="width=device-width,
</html>
initial-scale=1.0">