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.

108 Questions

How do you add a specific effect to a text on hold?

You can add a specific effect by styling. You can use CSS to add style.

What does Expected a digit but saw p instead mean?

The function you are trying to call expects an object of type digit to be passed in as an argument, but it got an object of type p instead. For example:

Let's say you want to create a JavaScript function called doubleNumber that takes a number as its input and outputs that number multiplied by 2. You could write it like this:

function doubleNumber(n)

{

return n*2;

}

If you tried to called this function like this:

doubleNumber("hi")

Then your function might produce the error:

Expected a Number but saw String instead

Because the operation *2 (times 2) can only be applied to numbers.

What is the https url of oldrunescape?

Just go to the normal RuneScape page - you can find it from there. Note that it is currently only accessible for paying RuneScape members; during the first days, you need to vote, to be able to get "early access". You use your regular RuneScape login.

How do you use the async attribute in html5?

The async and defer attributes are boolean attributes that indicate how the script should be executed. The defer and async attributes must not be specified if the src attribute is not present.

There are three possible modes that can be selected using these attributes. If the async attribute is present, then the script will be executed asynchronously, as soon as it is available. If the async attribute is not present but the defer attribute is present, then the script is executed when the page has finished parsing. If neither attribute is present, then the script is fetched and executed immediately, before the user agent continues parsing the page.

Is there any program or something you could install to keep some sort of log to keep track of which websites are visited from your computer even if someone clears the cache?

I have used defender pro parental control before and it works great. Not only does it track web pages vistied it also takes screen shots and recoreds all key strokes.I bought mine a wallmart for about 20 bucks and you get 9 other programs with it. It is called defender pro 10 in 1

Hope this helps you

try going on download.com and clicking on software then click security and spyware and then click parental filters and there are free parental software and you can also search for it on there. the URL is :http://www.download.com/Parental-Filters/3150-2162_4-0.HTML?tag=nav_dir

When did HTML5 come out?

People are saying HTML5 will simply take over Flash instantly. This isn't going to happen. HTML5 still is behind Flash in the number of features, and will be for years. HTML5 isn't yet compatible with all browsers, and it never will be, assuming Microsoft, Google and Firefox start forcing browser updates.

HTM L5 is actively working with JavaScript in many ways, such as Geolocation and Canvas.

There is heaps you can do with HTML5, all you need to do is use a search engine to see whether what you want to do is possible.

What is logic behind Remember Password in javaScript?

It saves time and also user doesn't have to write the password somewhere or memorize it. Though for security reasons it is a bad practice. Putting password on a browser's password list or storing it inside local computer using cookies is a bad idea. Security is jeopardized if other users or hackers gain access to those files.

How do you make a car rental scheme using javascript?

You need JavaScript and HTML to make car rental scheme. You might also need a middleware.

How do you insert HTML and JavaScript in Blogger post?

To add javascript (google ads) on blogger post you should keep a note of these pointers:

1. Open Post and go to HTML view.

2. Complete script should be in 1 line. Remove all line Breaks.

3. If you are using some onclick or other events then your javascript should be in double quotes.
eg. 5xDeals

4. If your script is too long, then you can put it somewhere on web and call it on your post.

I've used all these tips while placing ads on www.5xdeals.com.. You can check that out...


Microk

What is HTML5 and what is it used for?

HTML5 is the latest version of HTML. Many browsers including Internet Explorer do not fully support HTML5, so it is used as a testing point by many browsers. HTML5 includes many security upgrades and new tags and effects.

=====================================

HTML5 which makes them go innovative in any html development , be it Web design or development or mobile development.

How do you ADD search option in a webpage?

Search option can be placed using an input box. You can set the data filtering using jQuery.

How do you refer to an external style sheet on HTML?

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

You use the LINK tag.

How to code javascript Search Current Page?

To search the current page using JavaScript, you can implement a simple function that takes a search term as input and highlights the matching text on the page. You can use the document.body.innerHTML to modify the page content, or create a more sophisticated search using the window.find() method to locate and highlight the text. Here’s a basic example:

function searchAndHighlight(term) {
  if (term) {
    const regex = new RegExp(term, 'gi');
    document.body.innerHTML = document.body.innerHTML.replace(regex, (match) => `<span style="background-color: yellow;">${match}</span>`);
  }
}

Call this function with the desired search term to highlight occurrences on the page.

How do you add colums to HTML?

You create a table row using the TR tag...

<table>

<!-- ROW 1 -->

<tr>

<th>X</th>

<th>Y</th>

</tr>

<!--ROW 2-->

<tr>

<td>Tom</td>

<td>Sue</td>

</tr>

</table>

How can HTML be extended to create mobile applications for smartphones and tablets?

HTML can be extended for mobile applications through frameworks like Apache Cordova or React Native, which allow developers to package web technologies (HTML, CSS, and JavaScript) into native mobile apps. These frameworks provide access to device features, such as the camera and GPS, enabling the creation of rich mobile experiences. Additionally, Progressive Web Apps (PWAs) leverage modern web capabilities to deliver app-like experiences directly through browsers, allowing for offline functionality and push notifications. By utilizing these tools, developers can create responsive and interactive mobile applications using familiar web development skills.

How many search techniqe's in data structure?

There are two types of searching technique used in data structure.such as linear and binary search.