Computer Science, asked by himanshutopper, 5 months ago

Find the error and write the correct primitive
a) PPT 30​

Answers

Answered by shrutisashreek
1

Answer:

Stands for "Hypertext Markup Language." HTML is the language used to create webpages. "Hypertext" refers to the hyperlinks that an HTML page may contain. "Markup language" refers to the way tags are used to define the page layout and elements within the page.

Below is an example of HTML used to define a basic webpage with a title and a single paragraph of text.

<!doctype html>

<html>

<head>

<title>TechTerms.com</title>

</head>

<body>

<p>This is an example of a paragraph in HTML.</p>

</body>

</html>

Similar questions