HOW TO CREATE A WEBSITE [ ADDING BODY, HEAD AND TITLE]

I would be posting step-by-step guides to becoming a professional web designer. Below is the first step:


 HOW TO CREATE A WEBSITE 

ADDING BODY, HEAD AND TITLE

<body>

Everything inside this element is 

shown inside the main browser 

window.

<head>

Before the <body> element you 

will often see a <head> element. 

This contains information 

about the page (rather than 

information that is shown within 

the main part of the browser 

window that is highlighted in 

blue on the opposite page). 

You will usually find a <title>

element inside the <head>

element.

<title>

The contents of the <title>

element are either shown in the 

top of the browser, above where 

you usually type in the URL of 

the page you want to visit, or 

on the tab for that page (if your 

browser uses tabs to allow you 

to view multiple pages at the 

same time).

EXAMPLE

<html>

<head>

 <title>GoTechUpdates</title>

</head>

<body>

 <h1>Adding body, head and title</h1>

 <p>Anything within the body of a web page is 

 displayed in the main browser window.</p>

</body>

</html>

RESULT

Comments