answersLogoWhite

0

HTML5

HTML5 is the latest revision of HTML. It is a language for presenting and structuring content for the Web. HTML5 includes features that support graphical and multimedia content, and provides detailed processing models to promote more interoperable implementations.

500 Questions

Is html5 case sensitive?

User Avatar

Asked by Wiki User

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 <BODY> and <body> as valid HTML tags.

Which are the new element of HTML5 that lets scripting applications dynamicaly render graphics animations or other visual images?

User Avatar

Asked by Wiki User

is a new HTML5 element that allows scripts (usually JavaScript) to draw graphics on the fly. The container holds the JavaScript code that does the actual drawing.

What is html5?

User Avatar

Asked by Wiki User

html5 is the latest version of html which is support the services lake in html before

like, latest multimedia. Its core aims have been to improve the language with support for the latest multimedia while keeping it easily readable by humans and consistently understood by computers and devices (web browsers, parsers, etc.). HTML5 is intended to subsume not only HTML 4, but also XHTML 1 and DOM Level 2 HTML

What is different between HTML4 and HTML5?

User Avatar

Asked by Wiki User

Syntax is very similar. HTML5 allows you to upload video, do animation, etc. without the use of Flash or Silverlight. Pretty awesome...

What is the correct HTML element for playing video files?

User Avatar

Asked by Wiki User

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

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

User Avatar

Asked by Wiki User

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 elements are new in HTML5?

User Avatar

Asked by Wiki User

I gave quite a few interviews throughout my career and this is a very very common question that almost every interviewer asked.

They are listed

  1. audio tag and video tag

  2. Vector Graphics:

  3. Semantic header and Footer

  4. Figure and figcaption:

  5. Nav tag

  6. Progress tag

  7. quite a few new form elements

  8. Local Storage

There are many others as well, but I have listed few which are used on a regular basis.

What commands would quit a vi session without saving changes to the file?

User Avatar

Asked by Wiki User

To quit a vi session without saving any changes, you use the the same quit command, but append an exclamation point. So:

:q!

What HTML character symbolizes that the tag is a closing tag?

User Avatar

Asked by Wiki User

You are probably referring to the front slash. It, along with the less than sign and the greater than sign and the name of the tag, form an end tag, like this:

</html>

The opening tag does not have the front slash, so it is the character that makes the difference.

How do you write the conclusion on computer project on topic html.?

User Avatar

Asked by Wiki User

This project is based on, a final project on web page designing is really knowledgeable project for the students. HTML is unnecessary for raising issues of audience, purpose, design, and accessibility. learning HTML need not be a barrier to learning writing, that it is possible to use HTML to address writing issues.

What The correct HTML tag for the smallest size heading?

User Avatar

Asked by Wiki User

A number of tags only have one letter, like <b> or <i> or <p> or <u>.

What company created Java script?

User Avatar

Asked by Wiki User

Netscape. See related Wikipedia-link.

How do you add a template to your HTML website in Notepad plus plus?

User Avatar

Asked by Wiki User

You can add a template to your HTML website in Notepad plus plus by adding a zen coding plugin in the notepad plus plus.

What is innerHTML in javascript?

User Avatar

Asked by Wiki User

innerHTML is often used in javasript to change the value already present in html tags. For eg The following code will change the text on button click

<html>

<head>

<script type="text/javascript">

function changeText()

{

document.getElementById("changeText").innerHTML = "I am fine thank you. How about you?"

}

</script>

</head>

<body>

<div id="changeText">

Hello! How are you?

</div>

<input type="button" value="Change Text" id="button_1" onclick="changeText()" />

</body>

</html>

What are the four basic HTML tags?

User Avatar

Asked by Wiki User

The four most basic tags are <html>, <head>, <title>, and <body>. They are necessary for every web page. The fifth most basic is up for debate, because no other tag is absolutely necessary. In my experience, <table> and <p> are also very common.

i s 'kujl

Does the iPod have HTML5?

User Avatar

Asked by Wiki User

HTML 5 is a set of standard instructions that a modern browser should be able to use when rendering content from a website. The iPad's Safari browser uses the HTML 5 standards so there is nothing to install.

What is the conclusion of HTML?

User Avatar

Asked by Wiki User

what is the conclusion on computer programming

How do you change Hotmail background color?

User Avatar

Asked by Wiki User

when you log on there is the right hand corner below your name and tere it says options.click on that and there you see (off) (RIGHT) ETC. AND YOU SEE MORE options and click on it and there you have evrything like (managing your account) (writing email) (reading emails) (preventing junk mails) and (COSTUMIZING HOTMAIL)down the costumizing there is (themes) (languages) click on the (THEMES) and all of the background you can choose from and click what you want and click "SAVE"! THERE YOU ARE DONE...

BACKGROUND CHANGED.

How do you add special effects to text in HTML?

User Avatar

Asked by Wiki User

Drop Cap

Example:

This is an example of a drop cap effect using the float property.

Mouseover Title

Example:

Paragraph text here.

Scrolling Text

Example:

Scrolling text up!

What is Doctype?

User Avatar

Asked by Wiki User

An identifier in the HTML document, that tells to the browser which type of HTML it needs to use to show contents of that document. Specifying different versions of HTML will result in different behavior of the document. If the type hasn't been specified at the beginning of HTML document the browser might load it slowly or even with the errors.

Usage:

<!DOCTYPE HTML /*Here goes type of the document specification (DTD)*/>

What are the advantages to using a website to advertise?

User Avatar

Asked by Wiki User

- have easy access to millions of resources

- get homework answers

- socialise

- get up to date news

- watch tv or listen to radio

- file sharing

- emails

- telephone

- online chat

- remote access

- video and audio streaming

- video conferencing

- online banking

- teleworking

- e - commerce (buying and selling online)

What are inline styles embedded styles and external style sheets?

User Avatar

Asked by Wiki User

While inline styles in web design uses the same properties that can be found in style sheets, in the way you are meaning style sheets no, inline styles are not style sheets. Inline styles are used when you are needing the use a specific rule once on one page or if you are needing to use a specific rule in place of a rule that would normally get used from an internal or external style sheet. In the cascading priority of things inline styles override internal style sheet rules which override external style sheet rules.