i.EXPLAIN HTML AND IT'S USES WITH ONE EXAMPLE 1pg
Answers
Answer:
hypertext markup language
Explanation:
standard language for documents designed to be displayed in the web browser
Answer:
HTML its uses and example.
Explanation:
HTML is the hypertext markup language that is used to create the webpages along with CSS and Javascript.
HyperText is the method by which you move around on the web by clicking on special text called hyperlinks which bring you to the next page. The fact that it is hyper just means it is not linear i.e. you can go to any place on the Internet whenever you want by clicking on links there is no set order to do things in.
Markup is what HTML tags do to the text inside them. They mark it as a certain type of text (italicized text, for example).
HTML is a Language, as it has code-words and syntax like any other language.
Uses of HTML.
1) Used for web page development.
2) Used for web page creation.
3) Inter navigation.
4) Cutting edge feature.
5)Responsive images on web pages.
Example:
<!DOCTYPE html>
<html>
<body>
<h1>My First page</h1>
<p>My first page.</p>
</body>
</html>