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.

500 Questions

What style is used to specify font size in a style?

User Avatar

Asked by Wiki User

You would specify the font size like so:

.myClassName {

font-size: 10px;

}

You can specify font sizes in:

- pixels (as seen above, by putting "px" at the end)

- points (think MS Word sizes, by putting "pt" at the end)

- ems (throw-back from printing presses, by putting "em" at the end)

- percentages (percentage of the inherited size, by putting "%" at the end)

What is HTML form?

User Avatar

Asked by Wiki User

The HTML form tag is a container tag for holding HTML elements that allow the user to submit information to the server for processing.

The form tag contains attributes like ID (which allows serverside code to identify the form) method (which is GET or POST, and defines how the info in the form will get sent to the server) and type (which is used to distinguish between regular forms, and forms that contain files.) The form tag also has the action attribute, which will tell the browser where to send the submitted data for processing.

<form id="search" action="search.php" method="get">

<!--Form elements go here-->

</form>

Which attribute of an HTML form tells the browser how to encode the information?

User Avatar

Asked by Wiki User

The enctype attribute indicates how the form data should be encoded. It is placed in the form tag inside it.

What do you call the links between the pages or other websites in HTML?

User Avatar

Asked by Wiki User

Links in HTML documents are called references. They are commonly known as href's, or HyperText References.

What is the significance of DOCTYPE in HTML document?

User Avatar

Asked by Wiki User

An HTML DOCTYPE defines which version of the language you are using, and let's the browser act accordingly.

The DOCTYPE in an HTML document is an idea borrowed from XML. The DOCTYPE file defines the rules that the language has to follow. By making sure you've declared the doctype in an HTML document, you let the browser know how you're expecting that HTML to be treated. In an ideal environment, adding a doctype will allow you to be sure of exactly how the code will be rendered by the user's browser.

What does heading style mean?

User Avatar

Asked by Wiki User

What is a static page?

User Avatar

Asked by Wiki User

It is a page that does not change. Its content is therefore static. The opposite would be a dynamic page, where content is regularly changing.

Who created the ARPANET?

User Avatar

Asked by Wiki User

there is no single person responsible for the internet. In the 1970s there was anetwork of university libraries that shared files electronically, and the concept grew and developed from there.

Is HTML difficult to learn?

User Avatar

Asked by Wiki User

It depends on how you learn HTML, there are tons of resources on the Internet to learn HTML. One of the quickest and easiest ways is to watch an online HTML video tutorial.

With the excellent visual aids and demonstrations included in the video, you should have an excellent start to learning and using HTML.

Can identify the odd and the even in the java script using HTML?

User Avatar

Asked by Wiki User

Here is a JavaScript option for determining if a number is odd or even. It even lets you know if the number is zero (if you want zero to be neither odd nor even).

var n = prompt("Enter a number to identify as odd or even", "Type your number here");

n = parseInt(n);

if (isNaN(n))

{ alert("Please Enter a Number"); }

else if (n == 0) { alert("The number is zero"); }

else if (n%2) { alert("The number is odd"); }

else { alert("The number is even"); }

Is a webpage an example of an hypertext document?

User Avatar

Asked by Wiki User

Sort of yes and sort of no. While a web page has HTML that usually includes hypertext, it is much more. Hypertext just includes links to other documents or locations within a document, while a web page also uses HTML to display images and format content.

How do you apply css code in HTML?

User Avatar

Asked by Wiki User

"class" is an attribute of most if not all HTML tags. To apply a CSS class to a tag, simply make the class attribute equal to that CSS class.

For example, suppose you have a CSS class called bigRed that makes text large and red. If you want to apply it to a certain text, just put it in a tag surrounding that text.

e.g.

. . . but my <span class='bigRed' >car</span> was faster than . . .

Why HTML doesn't need a compiler to run?

User Avatar

Asked by Wiki User

They are not programming languages and do not create programs, so they don't need a compiler. A browser opens a web page and reads the HTML or XHTML and displays it, more like an interpreter would.

Why was HTML developed?

User Avatar

Asked by Wiki User

HTML was made because it was useful. Billions of people use the internet today, it is obviously a very helpful tool. When the internet was first invented, people had to write in HTML to make things happen. If they didn't nothing would happen. People still do the same thing today.

HTML was developed to be an easy way to create web pages. You don't have to be a programmer to use it. If you can edit a text file, then you can write HTML.

Although HTML stands for HyperText Markup Language it's not really a programming language like Java, Perl, C, or BASIC - it's much simpler. It's a way of describing how a set of text and images should be displayed to the viewer, similar in concept to a newspaper editor's markup symbols.

Its use of descriptive markup was a major factor in the success of the Web, because of the flexibility and extensibility that it enabled.

What is the anatomy of HTML?

User Avatar

Asked by Wiki User

Html mostly uses three main parts. The thing,(e.g. <FONT size="10"></font>) the thing your changing, (e.g. <font SIZE="10"></font>) ,what your changing it to.(e.g. <font size="IO"></font) And the closing tab.(e.g. <text size="10"></FONT>)Then you put some of the thing (e.g. <font size="10">Content of your site</font>)

How do you use color tag in HTML?

User Avatar

Asked by Wiki User

You don't use color as a 'tag' so-to-speak. To specify a color you have to add the color attribute to a HTML element. For example:

your_text_here

What is a combination of HTML tags CSS and scripting language?

User Avatar

Asked by Wiki User

Dynamic HTML, the DOM (document object model) describes a combination of HTML tags, CSS, and scripting language.

How do you find the HTML used on a website?

User Avatar

Asked by Twiyp

If you are using a modern browser, you should be able to view the source of any website. Every operating system is different, and so is are the browsers used today. Typically, there is an option called "view source," "view page source," "page source," or something of that nature that allows you to view the HTML of the page (along with any other scripts and styles incorporated into the document).

Login code for HTML?

User Avatar

Asked by Wiki User

If you mean how to create a login code with HTML, you need a tag called

and a tag called and something in another programming language, such as php or java. There is no login code necessary to use HTML.

What is the correct xhtml for referring to an external style sheet?

User Avatar

Asked by Wiki User

<link href="basic.css" type="text/css" rel="stylesheet" media="screen"/>

<link href="print.css" type="text/css" rel="stylesheet" media="print"/>

How do you insert image in email?

User Avatar

Asked by Wiki User

Create your email. Either before you type your text, or after, at the top menu, click "INSERT", choose "file", then retrieve your file. It will attach itself to your email. Normal file types are: JPG, BMP, GIF(animated) If the photo is too big for your email or the recipients, it will error.

How are paragraphs recognized in HTML?

User Avatar

Asked by Wiki User

Paragraphs can be delineated with the p tag. ie:

<p>This is a very short paragraph, but it works for me. As a responsible coder I use p tags for accessibility purposes.</p>

One could also fail to specify text as a paragraph even though it may be formatted like one. ie:

<div>This division is holding my paragraph, but a screen reader wouldn't detect my text as a paragraph. This is bad, since I can use the p tag with CSS to style the paragraph to look just as it would inside of this div tag.</div>

What are skin tags on your tongue from?

User Avatar

Asked by Wiki User

See your dentist or GP about this.

What is a diplomatic yellow tag?

User Avatar

Asked by Wiki User

The easiest way is to become a diplomatic courier, approved by the country issuing you a diplomatic passport, registered with the country into which you seek admission.
You could probably buy a counterfeit one, but not a real one. Keep in mind that a counterfeit bag would not make it through customs because it would be lacking documentation.

How many section of HTML document?

User Avatar

Asked by Wiki User

There are six headings that are available to be used in HTML. The range from H1 to H6. An H1 is more important then H6 heading. There should only be one H1 heading on any single HTML page.