182k views
0 votes
What is the function of HTML?

2 Answers

2 votes

There is no functions in html:

It is only used to create documents for the web browser.

here is an example file of html, and css:

<!DOCTPYE html>

<html>

<head>

<title>There is no function to html</title>

<style>

#heading {

color: red;

}

</style>

</head>

<body>

<h1 id="heading">There are no functions in html</h1>

</body>

</html>

yeah

User Gsthina
by
4.3k points
4 votes

Step-by-step explanation:

HTML is used to create web pages, documents.

hope this helps u

User Xueke
by
4.2k points