|
Lorem Ipsum generator |
|
|
|
Monday, 11 October 2010 15:09 |
|
Use the Lorem Ipsum generator to create semi random text for temporary use in textareas.
Lorem Ipsum generator |
|
HTML Redirect |
|
|
|
Thursday, 19 August 2010 09:50 |
|
Place the following code between the HEAD tags of your HTML page:
<meta http-equiv="Refresh" content="10; url=http://www.mobielstartpagina.nl">
In the above example, the visitor is redirected after 10 seconds to: http://www.mobielstartpagina.nl |
|
HTML PRE TAG |
|
|
|
Thursday, 19 August 2010 09:50 |
|
Use <pre> </ pre> tag to display code on a HTML page:
<pre xml:lang="javascript"> // Javascript alert("hello World"); </pre>
// Javascript
alert("hello World");
|
|
HTML ID or CLASS |
|
|
|
Thursday, 19 August 2010 09:50 |
|
Use 'id' to identify one element. Use 'class' to treat elements as a group. |
|
HTML FORM MARGIN |
|
|
|
Thursday, 19 August 2010 09:50 |
Above the form tag there is by default a blank rule. Remove the blank rule with the following CSS:
form { margin: 0; padding: 0; } |
|
Google notranslate CLASS |
|
|
|
Thursday, 19 August 2010 09:50 |
|
Did you know there is a tag to prevent Google from showing the Translate this page option in the search results?
If you don't want the page to be translated, insert the following meta tag in to your HTML file:
<meta name="google" value="notranslate">
However, if you don't want a section of your webpage to be translated, just add class=notranslate to any HTML element to prevent that element from being translated. |
|
|
|
|