What Is A Tag? |
||
Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.
In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.
Zymic Webmaster Forums Web Design & Development Client Side Scripting HTML and CSS |
||
2 Pages
1 2 >
|
![]() |
What Is A Tag? |
||
Jan 2 2011, 10:26 AM
Post
#1
|
|
|
Newbie ![]() Group: Members Posts: 2 Joined: 2-January 11 Member No.: 171,210 |
In HTML, a tag tells the browser what to do. When you write an HTML page, you enter tags for many reasons -- to change the appearance of text, to show a graphic, or to make a link to another page.
Reason for edit: Removing Ad Links
|
|
|
Feb 9 2011, 03:36 AM
Post
#2
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 9-February 11 Member No.: 176,839 |
In HTML by a particular format is used by us. That formatting word is called as tag. Tag are very useful thing in HTML it will help to format the web page content and allow what we want to do.
|
|
|
Feb 11 2011, 04:20 PM
Post
#3
|
|
|
Newbie ![]() Group: Members Posts: 1 Joined: 11-February 11 Member No.: 177,283 |
Tags are HTML behaviors that tell the browser what to do.
|
|
|
Mar 7 2011, 10:34 AM
Post
#4
|
|
|
Newbie ![]() Group: Members Posts: 15 Joined: 7-March 11 Member No.: 180,928 |
Think of tags as commands. For example if you want a line of text to be bold. You will put a tag at the exact point you want the bold lettering to start <bold>and another tag where you want the bold lettering to stop.</bold> There you have an example of how tags make commands and tell the browser how to display the text. Just like telling a dog to sit. You give the command.
All tags that are opened must correspondingly be closed, just as if you are writing a quoted statement with those "inverted commas". A tag is closed this way </tag> therefore we open a new tag <bold> and close the tag </bold> |
|
|
Mar 22 2011, 07:40 AM
Post
#5
|
|
|
Member ![]() ![]() Group: Members Posts: 37 Joined: 18-March 11 Member No.: 182,471 |
Tag is used in HTML for creating web pages and making website..
|
|
|
Apr 5 2011, 12:07 PM
Post
#6
|
|
|
Member ![]() ![]() Group: Members Posts: 35 Joined: 4-March 11 Member No.: 180,466 |
Tag is the fix formatted text that tails that how the text should be appear on the browser.
|
|
|
Apr 14 2011, 09:32 AM
Post
#7
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 14-April 11 Member No.: 186,397 |
The <a> tag defines an anchor. An anchor can be used in two ways .To create a link to another document, by using the href attribute. To create a bookmark inside a document, by using the name attribute.
|
|
|
Apr 19 2011, 06:40 AM
Post
#8
|
|
|
Newbie ![]() Group: Members Posts: 9 Joined: 19-April 11 From: AL Member No.: 187,094 |
A tag is the main property of HTML or any markup language ... without a tag any document will be a simple document like any notepad or word document. Every language has different tag in all the language. For example " <b> " it's tag in HTML to bold the content. There are so many tag for different type of use.
|
|
|
May 13 2011, 08:42 AM
Post
#9
|
|
|
Newbie ![]() Group: Members Posts: 11 Joined: 13-May 11 Member No.: 190,146 |
tag is also known as HTML Elements. It's used to create HTML documents so that you can view them in Internet browsers.
|
|
|
May 26 2011, 11:10 AM
Post
#10
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 25-May 11 Member No.: 191,679 |
TAG
HTML tags (otherwise known as "HTML elements"), and their respective attributes are used to create HTML documents so that you can view them in browsers and other user agents. Note that not all browsers/user agents support all HTML tags and their attributes, so you should try to test your pages in as many browsers as you can. |
|
|
Jul 12 2011, 09:59 AM
Post
#11
|
|
|
Newbie ![]() Group: Members Posts: 6 Joined: 16-May 11 Member No.: 190,508 |
In HTML, a tag tells the browser what to do. When you write an HTML page, you enter tags for many reasons -- to change the appearance of text, to show a graphic, or to make a link to another page. Tags are the commands that give HTML documents their functionality. They consist of commands placed within < and >. Some tags work by placing a start and stop tag at each end of the desired text, such as below <big>.This makes the text bigger <big>.The stop tags are often the same as the start with the addition of "/" at the beginning of the stop tag. Using both of these tags places the desired text in a container. But not all tags need to use a container, and thus don't need a stop tag. In the glossary below you will find a "</>" next to the tags that require a stop tag. |
|
|
Jul 14 2011, 05:02 AM
Post
#12
|
|
|
Newbie ![]() Group: Members Posts: 15 Joined: 13-July 11 Member No.: 198,528 |
Tags are the commands that give HTML documents their functionality. They consist of commands placed within < and >. Some tags work by placing a start and stop tag at each end of the desired text, such as below <big>.This makes the text bigger <big>.The stop tags are often the same as the start with the addition of "/" at the beginning of the stop tag. Using both of these tags places the desired text in a container. But not all tags need to use a container, and thus don't need a stop tag. In the glossary below you will find a "</>" next to the tags that require a stop tag. Definition was clear to understand.Thanks |
|
|
Aug 10 2011, 12:04 PM
Post
#13
|
|
|
Ninja ![]() ![]() ![]() Group: Members Posts: 104 Joined: 27-June 11 Member No.: 196,019 |
in html we perform every operation using tag.
|
|
|
Aug 13 2011, 10:47 AM
Post
#14
|
|
|
Newbie ![]() Group: Members Posts: 2 Joined: 13-August 11 Member No.: 203,454 |
The <a> tag defines an anchor. An anchor can be used in two ways:
To create a link to another document, by using the href attribute To create a bookmark inside a document, by using the name attribute The a element is usually referred to as a link or a hyperlink. The most important attribute of the a element is the href attribute, which indicates the links destination. By default, links will appear as follows in all browsers: An unvisited link is underlined and blue A visited link is underlined and purple An active link is underlined and red |
|
|
Aug 17 2011, 09:25 AM
Post
#15
|
|
|
Newbie ![]() Group: Members Posts: 19 Joined: 10-August 11 Member No.: 202,818 |
Thanks for posting your answers.Very useful
|
|
|
Aug 26 2011, 12:17 PM
Post
#16
|
|
|
Newbie ![]() Group: Members Posts: 13 Joined: 26-August 11 Member No.: 205,789 |
A command inserted in a document that specifies how the document, or a portion of the document, should be formatted. Tags are used by all format specifications that store documents as text files. This includes SGML and HTML.
|
|
|
Aug 26 2011, 01:40 PM
Post
#17
|
|
|
Member ![]() ![]() Group: Members Posts: 35 Joined: 27-July 11 Member No.: 200,627 |
Basically Tag use for optimized of your web site.We use multiple tag for optimized our web sites.
|
|
|
Sep 2 2011, 09:28 AM
Post
#18
|
|
|
Newbie ![]() Group: Members Posts: 6 Joined: 2-September 11 Member No.: 206,866 |
A tag is a word or phrase used to group similar records together. You can search by that word or phrase to locate that type of record at a later time. For instance, if you tag two records with the word “vendor," a search for the word “vendor” will display those records. We like to think of tags as virtual paperclips. Feel free to do the same!
|
|
|
Sep 3 2011, 05:24 AM
Post
#19
|
|
|
Newbie ![]() Group: Members Posts: 13 Joined: 26-August 11 Member No.: 205,789 |
Tag is a command inserted in a document that specifies how the document, or a portion of the document, should be formatted. Tags are used by all format specifications that store documents as text files. This includes SGML and HTML.....
|
|
|
Sep 12 2011, 06:52 AM
Post
#20
|
|
|
Member ![]() ![]() Group: Members Posts: 92 Joined: 3-September 11 Member No.: 206,994 |
Tag in HTML is basically used for interaction with the browser,,...
Tag communicate with browser and decide what tags should be shown in your browser.. or convert some tag into html for showing to the browser |
|
|
![]() |
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users) |
||
| 0 Members: | ||
Forum Jump |
||
| Lo-Fi Version | Time is now: 20th May 2013 - 05:40 AM |