answersLogoWhite

0


Best Answer

Angle brackets, like this:

<html>

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

The < and > signs, like these:

<html>

<head>

<body>

<hr>

<b>

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

The angle brackets, which you can also call the less than and greater than signs. < and > .

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

yes

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What type of brackets are html tags enclosed in?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Is html5 case sensitive?

Actually, it depends on the version of HTML and your browser. The current standard requires you to write HTML tags in lower-case letters. However, many browsers will recognize both &lt;BODY&gt; and &lt;body&gt; as valid HTML tags.


What are types of different HTML tags?

There are many different html tags. Tags for images, videos, links, formatting just to name a few.


What is the work of HTML?

The work of HTML is to design Web Pages. Just like this one! HTML can be used with other Web and Non-Web coding languages to make an interactive Web-Site. WikiAnswers, uses more then one type of coding inside HTML. It uses JavaScript, PHP, etc! To start with HTML, you first need to start with HTML tags, those define the Web Page, so that then you can add other tags. The HTML tag is &lt;html&gt; Like &lt;body&gt; , &lt;p&gt; , &lt;script&gt; , &lt;title&gt; , &lt;head&gt; , and many, many more! Remember, you always need to close the tags. To close the tags, you use a /. Exampels: &lt;/html&gt; &lt;/body&gt; &lt;/head&gt; &lt;/title&gt; , ect Their is a sort of special tag, the &lt;br&gt; tag. That you close automatically, it is basically your ENTER key. for the br tag, you do this : &lt;br /&gt; For more information on HTML, look at the Related Links!


Different of HTML tags?

&lt;p&gt;Paragraph&lt;/&gt; Next Line&lt;br /&gt; &lt;font color="red"&gt;This is Red!&lt;/font&gt; &lt;b&gt;Bold&lt;/b&gt; &lt;i&gt;Italic&lt;/i&gt; &lt;strike&gt;Strikethrough&lt;/strike&gt; These are the basic HTML tags


What tags are used to embed one HTML page inside another HTML page without using frames?

&lt;object type="text/html" data="http://www.example.com" style="width:80%; height:300px; margin:1%;"&gt; embedded html without frames&lt;/object&gt;

Related questions

Which type of tags HTML uses?

HTML uses markup languages for it's functionality. It uses &lt;p&gt; for paragraph, &lt;a&gt; for hyperlink etc.


What do you type in to use HTML tags?

Notepad / wordpad. open and close all tags, or the coding may go awry. &lt;opentag&gt; &lt;/endtag&gt;


In what type of business would you use HTML tags?

HTML Tags are not used only for one type of business or site, HTML is in EVERY SINGLE WEBPAGE. Without them, all you would see is text on a page. You need them to insert images, edit text, start paragraphs, etc. They can never be neglected no matter what type of business you have. If your web hosting site has tools allowing you to edit the page without going into HTML Coding, it still does not mean that HTML is a waste for you. When using these tools it simply is a quicker way of modifying HTML and adding HTML tags. Hope this helps!-jjshammas


Is html5 case sensitive?

Actually, it depends on the version of HTML and your browser. The current standard requires you to write HTML tags in lower-case letters. However, many browsers will recognize both &lt;BODY&gt; and &lt;body&gt; as valid HTML tags.


How do you make a HTML tag?

You type a less than sign, then the name of the tag and then a greater than symbol. There are lots of HTML tags, for different purposes. The tag that starts a page is this one: &lt;html&gt;


What are types of different HTML tags?

There are many different html tags. Tags for images, videos, links, formatting just to name a few.


How will you create username and password HTML tags?

&lt;input type="text" /&gt; That could be used for a username &lt;input type="password" /&gt; That could be used as a password.


What is the work of HTML?

The work of HTML is to design Web Pages. Just like this one! HTML can be used with other Web and Non-Web coding languages to make an interactive Web-Site. WikiAnswers, uses more then one type of coding inside HTML. It uses JavaScript, PHP, etc! To start with HTML, you first need to start with HTML tags, those define the Web Page, so that then you can add other tags. The HTML tag is &lt;html&gt; Like &lt;body&gt; , &lt;p&gt; , &lt;script&gt; , &lt;title&gt; , &lt;head&gt; , and many, many more! Remember, you always need to close the tags. To close the tags, you use a /. Exampels: &lt;/html&gt; &lt;/body&gt; &lt;/head&gt; &lt;/title&gt; , ect Their is a sort of special tag, the &lt;br&gt; tag. That you close automatically, it is basically your ENTER key. for the br tag, you do this : &lt;br /&gt; For more information on HTML, look at the Related Links!


What file type is HTML?

.htm or .html however because HTML is a standard language provided you use Document Tags (auto added by most software like Dreamweaver) then it can take on the server side extension eg .php


How do you use regular expression to strip all HTML tags from a string?

If you have simple HTML, this regexp will do it: --- // Example using Javascript var HTML = ...; // HTML string from somewhere HTML.replace(/&lt;[^&gt;]+&gt;/g, ""); // match opening and closing brackets, replace with "" --- This will work on HTML like this: --- &lt;h1&gt;example&lt;/h1&gt; &lt;div class="content"&gt;content&lt;/div&gt; --- It will not work on HTML like this: --- &lt;script type="text/javascript"&gt; var a = 1; if (a &lt; 0) alert("hi"); &lt;/script&gt; --- The regexp breaks because it will match less-than and greater-than tests in the javascript. In general you need special handling of Javascript and style tags. If you are parsing real world HTML from an external site, you will probably find other cases that need special treatment as well. (I found sites using brackets inside tag attribute values, this is not legal HTML but many browsers handle it. The regexp broke and I had to fall back to full HTML parsing.) In general, regexp is less than ideal for dealing with HTML. If you are doing anything more complex than "strip everything" a fully fledged HTML parser is a better option.


Different of HTML tags?

&lt;p&gt;Paragraph&lt;/&gt; Next Line&lt;br /&gt; &lt;font color="red"&gt;This is Red!&lt;/font&gt; &lt;b&gt;Bold&lt;/b&gt; &lt;i&gt;Italic&lt;/i&gt; &lt;strike&gt;Strikethrough&lt;/strike&gt; These are the basic HTML tags


Is form tag case sensitive?

No. HTML tags are not case sensitive. However, he standard approach by designers now, is to type them in lower case.