answersLogoWhite

0

What else can I help you with?

Related Questions

How do you create a inline cascading style sheet in HTML file?

You don’t actually create a CSS within the HTML document. You use the style attribute to do so. Code used within a CSS is similar to, but slightly different when used inline. Here are two examples:1 – Create a style for the tag in CSS:P {color:blue}2 – Create style for the tag inline:


Which is the inline analog of the div tag?

The inline analog of the <div> tag is the <span> tag.


What is the tag for an inline frame?

Inline frames are created using the IFRAME tag: <iframe src="sample.html" id="ourFrame"></iframe>


Which HTML attribute is used to define an inline styles?

<style type="text/css"></style>


What does href tag do?

HREF tag is used to create hyperlink. It send the control over to another document.


What is tag used to create horizontal separators?

Horizontal separators are created by the HR tag. It creates a horizontal line after the element.


What tag is used to create a reset button in a form?

<button type="reset" />


What is the different between table tag and div tag in HTML?

The table tag is used to create a table, which is a type of block-level element. The div tag is used to create a generic block element. The main difference is that tables are best-suited for tabular data, and divs are best-suited to presentation of non-tabular data.


What languageis used to create hypertext?

HTML itself can be used to create Hypertext. It can be created using the anchor tag which is shown by <a>.


Is Slash is used to create a closing tag?

Yes. <FORM> is the opening tag whereas </FORM> is the closing tag. This </TAG> to close tags is applicable for most tages. ex: <HTML> </HTML> <BODY> </BODY> etc...


Can you resize the html5 audio tag smaller?

You can re-size the audio tag in HTML5 easily. You can make the height or width of the tag according to you.


What is the difference between DIV and TABLE?

The TABLE tag is used to store tabular content and as such has child tags such as TR (for table rows), TD (for table cells), TH (for table headers), etc. The DIV tag is used simply to encompass a block for styling or structural reasons, it is similar to the SPAN tag but it a 'block' element as oppose to an 'inline' element (which SPAN is).