Computer Science, asked by anagha9241, 1 year ago

write the HTML code to generate the following output:Dubai Tourism

Answers

Answered by poojan
15

Html code (Sample):


<!DOCTYPE html>

<html>

<body>

<!-- Heading here -->

<h1>All about Dubai</h1>            

<!-- Content to be printed as a paragraph -->

<p>Dubai Tourism</p>

</body>

</html>

Answered by franktheruler
5

Answer:

<html>

<head>

<!--- header part--->

<title> program </title>

</head>

<!-- body section--->

<body>

<p> Dubai Tourism </p>

</body>

</html>

Explanation: Html means Hypertext Markup Language. HTML is the standard markup language for Web pages. HTML elements are the building blocks of HTML pages.

<html> → used to specify the appearance of the web page.

<title> → stands for  title of the web page.

<p> → stands for paragraph. this tag which is used to start a paragraph.

Similar questions