Skip to main content

Posts

Featured

Meet the 'head' and 'body' of a webpage

Now, that you know about the three tags i.e. the 'p' (paragraph) tag, the 'h1' to 'h6' (heading) tags and the ' img' (image) tag, we should discuss dividing and wrapping the information or metadata and the title, links etc.   from the actual content which will be displayed on the Webpage. To display the Webpage properly on the browser, we need to provide the browser with the information about the data or content which is to be displayed. This information about the webpage data is called the 'metadata'. Metadata is used to let the browser know about the author, character encoding, update information, title, and the meta description. This metadata is wrapped within the 'head'  tag. Let's look at the below example:- <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content=&

Latest posts

The 'img' Tag

HTML Tags

Web Developer first steps