PDA

View Full Version : Explain the difference between html and tags?



crackersguru
08-22-2017, 02:11 AM
Explain the difference between html and tags?

24x7servermanag
08-22-2017, 08:18 AM
Bascially HTML is the language in which tags are used. There are opening and closing tags to define the various attributes in HTML.

zarinekhan
08-24-2017, 06:31 AM
Definition and Usage. The <html> tag tells the browser that this is an HTML document. The <html> tag represents the root of an HTML document. The <html> tag is the container for all other HTML elements.

mvminfotechseo
11-28-2017, 05:28 AM
An element in HTML represents some kind of structure or semantics and generally consists of a start tag, content, and an end tag. The following is a paragraph element:

<p>
This is the content of the paragraph element.


Tags are used to mark up the start and end of an HTML element.

A start tag consists of an opening angle bracket (<) followed by the element name, zero or more space separated attribute/value pairs, and a closing angle bracket (>).

A start tag with no attributes:

<p>

Umangpharma
11-30-2017, 02:47 AM
HTML is the web language in which tags are used. HTML language is opening and closing tags to define the various attributes.

Umang Pharma (http://www.umangpharma.com)

saurabh mathur
12-04-2017, 02:46 AM
A tag is a part of an HTML element, or rather, an element is the sum of a start-tag, optional content and optional end-tag.HTML tag is just opening or closing entity on the other hand the an opening tag and closing tag is call an element

shaili shah
10-01-2020, 01:23 AM
Html is a tag and a language also.

By technically, Html is a collection of start tag, end tag and attributes and whatever inside the <html> tags.

And <html> tag is used to mark the start and end of an element.

Html is not the case sensitive but the most attributes are case sensitive.

Element can be placed into two distinct groups which is block level and inline level.

Most commonly used Block level elements are : <div>,<p>,<h1>to<h6>,<form>,<ol>,<ul>,<li>.

And Inline level elements are : <img>,<b>,<a>,<span>,<button>, etc. You can't place block level elements in inline block.

It won't create an error but it doesn't look good.

Hope you understand it.

Thanks!

yuva12
04-12-2021, 08:50 AM
HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

KyraKakkar
04-17-2021, 08:16 AM
Very engaging discussion. I wanted to learn about and understood it well here. Thanks for the information.

charlesprabhu
04-21-2021, 09:12 AM
HTML tag is just opening or closing entity. Tags are labels you use to mark up the begining and end of an element.

yuva12
04-22-2021, 08:48 AM
HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

jesica
04-23-2021, 08:47 AM
A tag is a part of an HTML element, or rather, an element is the sum of a start-tag, optional content and optional end-tag.