PDA

View Full Version : What do you mean by Semantic HTML



saiburi
09-22-2015, 06:08 AM
What do you mean by Semantic HTML

daviddakarai
09-29-2015, 06:11 AM
Semantic HTML is HTML that introduces meaning to the web page rather than just presentation. For example, a <p> tag indicates that the enclosed text is a paragraph. This is both semantic and presentational, because people know what a “paragraph” is and browsers know how to display them. In HTML4* tags like <b> and <i> are not semantic, because they define only how the text should look (bold or italic) and do not provide any meaning to the text.

sarveshseair
09-29-2015, 08:37 AM
Semantic HTML is the use of HTML markup to reinforce the semantics, or meaning, of the information in webpages and web applications rather than merely to define its presentation or look. Semantic HTML is processed by traditional web browsers as well as by many other user agents.

robertclark1
10-08-2015, 03:07 AM
Semantic HTML is the use of HTML markup to reinforce the semantics, or meaning, of the information in webpages and web applications rather than merely to define its presentation or look.

ajay49560
10-08-2015, 06:33 AM
Read this Link...

http://webdesign.about.com/od/htmltags/a/why-semantic-html.htm

Hope your Helps...

MrJaswal
10-08-2015, 07:15 AM
Semantic HTML or semantic markup is HTML that introduces meaning to the web page rather than just presentation.

BerthaJones
10-22-2015, 10:44 PM
Semantic HTML is the use of HTML markup to reinforce the semantics, or meaning, of the information in webpages and web applications rather than merely to define its presentation or look. Semantic HTML is processed by traditional web browsers as well as by many other user agents.

ramskl
11-25-2015, 05:07 AM
Semantic HTML tags are tags that convey meaning beyond the simple presenational value that they provide in a browser.

robertclark1
11-26-2015, 02:07 AM
Hello Friends,

Semantic HTML or semantic markup is HTML that introduces meaning to the web page rather than just presentation. For example, a <p> tag indicates that the enclosed text is a paragraph.

alishawalter
12-02-2015, 06:30 AM
Semantic HTML is a HTML that give meaning to web page rather then presentation. For example - <p> tag is a semantic HTML because it give meaning to text. Everyone knows p stands for paragraph and you can write text in it where as <b> cannot give meaning to text, it is just used to decorate the text.

Kumar v
12-04-2015, 01:43 AM
Which is more important coding like. HTML and php ?

CKenneth
12-18-2015, 02:20 AM
Semantic HTML gives a better meaning to the code, which increases the useability of HTML from just creating look of page to having a better and meaningful information. For example, in semantic HTML instead of using <i> tag for italics, we use <em> tag which stands for "emphasis". So it creates the usability of HTML code.

joshaidan
02-03-2016, 06:40 AM
Semantic HTML tags provide information about the contents of those tags that goes beyond just how they look on a page. Text that is enclosed in the <code> tag is immediately recognized by the browser as some type of coding language.

Shay_Fox
02-04-2016, 12:17 PM
Semantic HTML or semantic markup is HTML that introduces meaning to the web page rather than just presentation. For example, a <p> tag indicates that the enclosed text is a paragraph. This is both semantic and presentational, because people know what a “paragraph” is and browsers know how to display them. In HTML4* tags like <b> and <i> are not semantic, because they define only how the text should look (bold or italic) and do not provide any meaning to the text.

RH-Calvin
02-08-2016, 05:11 AM
Semantic HTML is the use of HTML markup to reinforce the semantics, or meaning, of the information in webpages and web applications rather than merely to define its presentation or look. Semantic HTML is processed by traditional web browsers as well as by many other user agents.