answersLogoWhite

0

📱

HTML

Hypertext Markup Language, or HTML for short, is a programming language most commonly used to develop websites and offline applications, such as manuals. Though the initial intent of the language was to exchange information from a small network of computers, it is now most often used to share information and allow engagement in online activities throughout a network with an increasing number of host computers. Questions about the development of applications and pages through HTML belong in this category.

2,666 Questions

What is the definition of tags in HTML?

HTML Tag is a piece of code that defines different elements of a web document. The tags that are recognized by HTML are listed below. Not all of them are widely used (or even at all) but these are the ones recognized. For more details on each individual tag you will need to search the internet or ask more specific questions here.

* ADDRESS * APPLET * AREA * A * BASE * BASEFONT * BIG * BLOCKQUOTE * BODY * BR * B * CAPTION * CENTER * CITE * CODE * DD * DFN * DIR * DIV * DL * DT * EM * FONT * FORM * H1 H2 H3 H4 H5 H6 * HEAD * HR * HTML * IMG * INPUT * ISINDEX * I * KBD * LINK * LI * MAP * MENU * META * OL * OPTION * PARAM * PRE * P * SAMP * SCRIPT * SELECT * SMALL * STRIKE * STRONG * STYLE * SUB * SUP * TABLE * TD * TEXTAREA * TH * TITLE * TR * TT * UL * U * VAR

How do HTML headers work?

= = = = = hello =

==

hello HTML tags must be within the "<" and ">" symbols.the largest heading would be: h1 inside these symbols ("<" and ">") for an opening tag, the text you wish to format would then follow, and the closing tag /h1 within these symbols ("<" and ">") would end the tag. Heading size decreases as the number within the tag increases, with h1 being largest and h7 being smallest

What is .Style in HTML?

The style is part of a plant's reproductive system. It is the plant structure that connects the stigma (pollen collector) with the ovaries, where seed cells are fertilized in sexual reproduction.

What is the correct HTML element for playing video files?

The video tag can be used for it. The tag was introduced in HTML5 only.

Which programming language is used within HTML documents to trigger interactive features?

Javascript is the main language used, but there are some other scripting languages used too.

What is the semantic difference between HTML tag and HTML text?

HTML text is formatted text that you view on a HTML formatted page, a HTML tag is a tag which defines the formatting of a selected area of text, i.e opening tag "<u>" "text to format here", followed by closing tag "</u>" would underline the text that you wish to format. In short, HTML tag defines the format of the text. These basics can be applied to a range of different functions.

What tags are headings defined with?

The HTML tags for headings are

,

,

,

,

and
, with h1 being the largest heading (by default).

For example,

Heading 1

would produce something similar to:

Heading 1

. What is the correct HTML for making a check-box?

this is for 2 simple cheakboxes

number 1


number 2

The "Type="cheakbox" is the important thing that changes the input into a box

Hopefally i helped :D

What is hyper text markup language and describe its role in implementation of java applets?

Short for HyperText Markup Language, the authoring language for creating documents on the world wide web.HTML defines the structure and layout of a Web document by using a variety of tags and attributes.

The correct structure for an HTML document starts with (enter here what document is about) and ends with < All the information you'd like to include in your Web page fits in between the and tags.

HTML is very important in describe of java applets and its implementation.

An applet is a program written in the Java programming language that can be included in an HTML page, much in the same way an image is included in a page. When you use a Java technology-enabled browser to view a page that contains an applet, the applet's code is transferred to your system and executed by the browser's Java Virtual Machine (JVM).

How has HTML changed the world?

In simple terms, it brought us the World Wide Web, the most important part of the internet for many people.

How do you open html video?

a HTML file is a web page. If you want to view it, you can open it with your internet browser (like internet explorer or firefox).

If you want to edit the file, you can either use a file editor like notepad (which can open any type of file) or you can use a web designer GUI like KompoZer.

Which is the color of a hyperlink?

It's changed by styling applied to the a:visited and a:active CSS pseudo classes. The visited pseudo class is applied to URLs you've already visited. The active pseudo class is applied when you click on the link (it's pretty quick.) The browser actually marks the link as "visited" and "active." All a programmer has to do is attach a color to these.

What are the advantages of dream weaver over HTML?

Dreamweaver is a piece of software that allows you to create webpages. HTML is a language that you use to create web pages. With Dreamweaver it creates the HTML code for you. You need to write HTML yourself if you do not have Dreamweaver or another piece of similar software.

How do you increase tally font size?

Standard tally dont have option to change font size. Using tally developer environment (TD9) application to modify the source code. We need to know TDL (tally defenitin language) programing to alter. Search for the field and change the font size as per the details there. Any querry please send mails to kinderptally@gmail.com

How i can Write the program in fortran using goto statement?

The use of GOTOs in programming is generally considered to be bad form, because it very rapidly leads to "spaghetti code" where it is difficult or impossible to follow the program's logic flow.

However, given Fortran's comparatively weak set of flow controls, there are times when a GOTO is unavoidable or actually clearer than using a more-structured layout. A simple example would be a subroutine that checks its arguments for validity and exits immediately if it finds something incompatible. The alternatives would be

(A) Put a GOTO 99999 after each invalid condition is detected, where 99999 is the program's RETURN statement

(B) Set flags after each condition, falling through and checking more and more flags until you "naturally" reach the module's RETURN.

An example of (A) would be (using slight variations on Fortran 90 syntax)

subroutine foo(x,y)

implicit none

real*4 x, y

! Check for negative arguments

if (x < 0.0) then

print *, 'Argument X is negative'

goto 99999

endif

if (y < 0.0) then

print *, 'Argument Y is negative'

goto 99999

endif

! (Code body goes here ....)

99999 continue

return

end

Where can one purchase label tags?

Major craft stores will carry iron on labels. Try stores like AC Moore and Michael's. They have a wide selection of craft labels including iron on, self adhering, and sew on.

How does one send an html email?

HTML is used to outline webpages and organize how they look. It is not a command language. Email cannot be sent using the HTML language. One must use a scripting language like PHP.

How are HTML and XHTML similar and different?

HTML and XHTML use a similar language syntax; tags, elements and everything. If you know HTML, you know messy XHTML: XHTML is a "clean" HTML. * Tags can be written in any case (uppercase or lowercase). * Some tags do not need to be closed. * HTML is parsed by systems based off of the Standard Generalized Markup Language (SGML). * HTML provides less accurate reading, and needs more time to read and manipulate data. * Some parsers cannot even manipulate HTML data, which is a big problem with more finicky devices (like mobile devices). * Tags must be written in lowercase. * All tags must be closed. * Tags must be properly nested -- no overlapping elements. * XHTML is parsed by XML parsers. * XHTML provides more accurate reading, and requires less time to read and manipuate data. * If a device can parse XML (which many modern devices can), the device can manipulate XHTML data to their needs (for example, to fit a website into the screen of a mobile phone).

How do you I reduce the size of font on screen?

There are two (2) ways to decrease website font:

Use of Heading TagsThere are different ways to decrease website font. First you can use heading tag. Heading tag has 6 tags that make text different from the others. Namely: "

,

,

,

,
and
. The smaller the header number the bigger the font. Therefore

will make text bigger than the others. And
will make the website text smaller. Use of Font TagsYou can control the font size better with Font tags. It should be inside the and tags. To use Font tags to resize a website font, type:

"Example Text" without quotes. Replace the phrase "Example Text" with the text you want to appear smaller. Aside from the value 6, you can also replace it with the desired value from 1 to 7. A browser's default is 3.

What does the HTML tag head mean?

The title tag indicates the title of the page. Almost every website has it. The title can be placed anywhere. I prefer it in the <head>

To use it:

<title>My Cool Title</title>

Note: This tag cannot be modified. There is nothing in CSS that you can do to change the style.

Different types of input html?

HTML supports ten input types: button, checkbox, file, hidden, image, password, radio, reset, submit, and text.

What HTML tags is used to create a drop down box in a form?

The SELECT and OPTION tags are used to create a drop-down box in an HTML form. The SELECT tag identifies the beginning of the options list, as well as providing a way to identify the data when it's submitted to the server.

The OPTION tags contain key / value pairs that allow the developer to display various items, and associate distinct values with those items.

Here's a simple example of a SELECT box.

When the form was submitted, the developer would look for a key in the POST or GET variables called "fruit." This key would contain the value of whatever option the user had selected--in this case either "a", "b", or "c"