Respuesta :

Answer:

Creating web page using html

<html>

<head>

<title>my first web page </title>  

</head>

<body>

<h1 align=”center”>My first web page </h1>

<p align=”center”>hello brainly </p>

<body>

</html>

Explanation:

Following are the steps to create any web page in html

Step 1:open notepad or nodepad++ .

Step 2:creating a web page by using html structure.

Step 3: save the file with .html extension.

Step 4:Run on the browser .

Following are the description of <html> structure

<html> :This tag is the root element,which always contains one <head>tag and one <body> tag .

<head>:It contains machine-readable information I.e metadata of the   document .

 it contains many tags like <script>,<link>,<title>,<style> etc.

<title>:The <title> tag is inside the <head> tag the content <title>tag is displayed as the page title in the tab of the browser .

<body>:The <body> tag act as container it means it holds the  content of the document. All the content like heading, paragraph are contained by <body> tag.It contains may tags like <p>,<a>,<h2> etc.