Computer Science, asked by rk7240123, 3 months ago

wath is use of form in HTML

Answers

Answered by duvarakesh5814
1

Answer:

HTML is the language for describing the structure of Web pages. HTML gives authors the means to: Publish online documents with headings, text, tables, lists, photos, etc. Retrieve online information via hypertext links, at the click of a button.

The HTML is first developed by in 1980, the full form of HTML is Hypertext Markup Language (HTML). HTML is heavily used for developing web pages that are display on the . each page contain a set of HTML tags it also contain which are used for connecting other pages. Every page that we are write on the internet is using some version of HTML code.

The HTML code ensures that the proper formatting of the text which are display on the internet browser. so without HTML a browser would not know how to display text as elements or other elements such as images, video. it provide the basic structure of the web page on which we can apply the style to change its style.

What are the uses of HTML?

What can we expect behind the new Huawei Mate 40 series?

HUAWEI Mate40 Series is finally here! You really don't know HMS Core? Meet the power behind all the brilliant apps and services on

The HTML is first developed by in 1980, the full form of HTML is Hypertext Markup Language (HTML). HTML is heavily used for developing web pages that are display on the . each page contain a set of HTML tags it also contain which are used for connecting other pages. Every page that we are write on the internet is using some version of HTML code.

The HTML code ensures that the proper formatting of the text which are display on the internet browser. so without HTML a browser would not know how to display text as elements or other elements such as images, video. it provide the basic structure of the web page on which we can apply the style to change its style.

Structure of the HTML tag:

The above HTML tag structure contain <h1> heading tag which is a oping tag it has attribute name “class” and its value “primary” and the closing tag is </h1>. associated with content example heading.

in HTML every closing tag contain a forward slash, but the image tag not contain the forward slash like .

how does the HTML looks?

The below example shows the basic structure of the web page.

<!DOCTYPE html>

<head>

<meta charset=”utf-8”>

<title> Home Page </title>

</head>

<html>

<body>

<h1>This is a heading tag</h1>

<p>This is the basic structure of HTML page</p>

</body>

</html>

Description of each HTML tag:

<!DOCTYPE html>: The <DOCTYPE html> declaration defines this document to be HTML5.

<html>: The <html> is the root element of a HTML page.

<head>: The <head> element contains the meta information about the document.

<title>: The <title> element specifies a title of the document.

<body>: The element contains the visible page content.

<h1>: The element defines the large heading.

<p>: The element defines a paragraph.

HTML is a markup language, heavily utilized for creating web pages & web applications.

Top uses of HTML

Web page development

Web document creation

Internet navigation

Cutting edge features

Responsive images on web pages

Client-side storage

Offline capabilities usage

Data entry support

Game development usage

Native APIs usage to enrich website

Similar questions