This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

8/31/2011

Java script - - Don't let the user use right click on mouse

You can lock the right click mouse and user or visitors can not copy and paste the info on your website

//////////////////////////////////////////////// 
<SCRIPT LANGUAGE="JavaScript">
var message="Function Disabled!";
///////////////////////////////////
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>
<font face="Tahoma"><a target="_blank" href="http:// www.Riotunes.Blogspot.com /"><span style="font-size: 8pt; text-decoration: none">www.Riotunes.Blogspot.com</span></a></font>


//////////////////////////////////////////////////////////////////////////////////


****************************************************
 <<Back to Menu

A message box when page opens

You can bring a message box or a alert a window which tell something to user at the first when page opens


 

JAVA Script CODE COLLECTION >> 2011 [ FREE ]

JAVA Script CODE COLLECTION >> 2011 [ FREE ] 
********************************************************************

HTML Text Input Code

HTML Text Input


This page is about HTML text input. It is about how to enable your website visitors to input text within your web page.

To create an HTML text input field, you use the HTML <input> tag. You add type="text" in order to make it a text field. This is because the <input> tag can be used for other types of input too - such as a submit button.



Example Text Input Field:

Example:
First name:



Last name:


Code:

The above code consists of a <form> tag containing two <input> fields: Two text input fields and one submit button. It also contains a break (<br />) after the first text input field (First name), so that the second input field (Last name) starts on a new line.


Multiple Lines of Text

The <input> tag isn't the only way of creating an HTML text input field. In fact, if you want your users to enter multiple lines of text, you should use the <textarea> tag.
The <textarea> tag is a specialized tag to allow multiple lines of text input.
Example:
Comments:



Code:



The "Action" Page

The above code assumes that there's an "action page" to process the contents of the form. In this example, "/html/tags/html_form_tag_action.cfm" is the server-side script that processes the form.
Action pages usually require some scripting knowledge to build, however, there are also plenty of free scripts available on the web.
Here's a form to email script that you can use for free. This page provides you with all the code you need to create a feedback form.

Further Details

This info aims to help you understand the above code, which consists mainly of HTML tags (or HTML elements).
The form tags contain other tags nested within them. These other tags define the actual form elements that appear within the form - such as the text area fields and the submit button.
You can use the following template as a basis for your HTML text input. Simply fill in the blanks or remove uneeded attributes.

1. The <form> Tag

For an explanation of all the attributes, see the HTML <form> tag specifications.

<form
	action=""
	method=""
	enctype=""
	accept-charset=""
	accept=""
	name=""
	class=""
	id=""
	dir=""
	lang=""
	target=""
	onSubmit=""
	onReset=""
	onclick=""
	ondbclick=""
	onmousedown=""
	onmouseup=""
	onmouseover=""
	onmousemove=""
	onmouseout=""
	onkeypress=""
	onkeydown=""
	onkeyup="" >

	(the individual form element tags go here - see below)

	</form>


2. The <textarea> Tag

This tag defines the comment box within the form.
For an explanation of all the attributes, see the HTML <textarea> tag specifications.

<textarea
	name=""
	rows=""
	cols=""
	class=""
	id=""
	dir=""
	lang=""
	title=""
	style=""
	readonly=""
	disabled=""
	tabindex=""
	onfocus=""
	onblur=""
	onselect=""
	onchange=""
	onclick=""
	ondbclick=""
	onmousedown=""
	onmouseup=""
	onmouseover=""
	onmousemove=""
	onmouseout=""
	onkeypress=""
	onkeydown=""
	onkeyup="" >

	(this is where the user can type comments and stuff)

</textarea>


3. The <input> Tag

This tag defines the input fields within the form. Input fields can consist of text, check boxes, radio buttons, submit buttons, and more.
For an explanation of all the attributes, see the HTML <input> tag specifications.

<input
	type=""
	name=""
	value=""
	size=""
	maxlength=""
	checked=""
	src=""
	class=""
	id=""
	dir=""
	lang=""
	title=""
	style=""
	align=""
	alt=""
	readonly=""
	disabled=""
	tabindex=""
	accesskey=""
	ismap=""
	usemap=""
	onfocus=""
	onblur=""
	onselect=""
	onchange=""
	onclick=""
	ondbclick=""
	onmousedown=""
	onmouseup=""
	onmouseover=""
	onmousemove=""
	onmouseout=""
	onkeypress=""
	onkeydown=""
	onkeyup="" />



HTML Bold code

HTML Bold Code
This page contains various HTML bold codes - HTML codes for creating bold text.
There's more than one way in HTML to bold text. This can be slightly confusing - especially if you aren't familiar with HTML coding. However, once you get your head around it, you'll find that each method has its place, and you can - and probably should - use a combination of these whenever you want HTML bold text.


CSS Bold: font-weight Property

CSS provides the font-weight property to make your text bold.
Here's an example:
Example of CSS bold text...
...and now this whole paragraph is bold.
CSS Code:

You can also specify the "boldness factor" (instead of just specifying bold). In other words, you can apply different levels of boldness to different text. Plus you can even specify that text should not be bold. To learn more about this, read about the font-weight property.
The above example uses inline style sheets, however, I highly recommend learning how to use external style sheets and CSS classes, as this will enable you to apply your styles across your whole website in one go.



HTML Bold: <b> Tag

When most people think "HTML bold", they usually think of text that has been boldened using the HTML <b> tag.
Here's an example of creating "HTML bold" using the <b> tag:
Example of HTML bold text...
...and now this whole paragraph is bold.
HTML Code:


Using the HTML <b> tag is probably the quickest/easiest way to bold text, however, just because you want bold text, doesn't mean you should automatically use the HTML <b> tag everytime.

So Which "HTML Bold" Tag Should I Use?

The HTML specification includes several tags for presented boldened/emphasized/highlighted text. Each tag has its own special meaning.

The following table outlines the HTML tags in question:
HTML TagWhen to use this tag
<b>Use on text to be stylistically offset from the normal prose without conveying any extra importance, such as key words in a document abstract, product names in a review, or other spans of text whose typical typographic presentation is boldened.
<em>This element represents stress emphasis of its contents. Use this tag whenever you want to place emphasis on a particular word or phrase.
<h1> to <h6>Use these tags for defining different levels of headings.
<mark>This element represents a run of text in one document marked or highlighted for reference purposes, due to its relevance in another context. Use this tag when you want to highlight a particular word or phrase for reference purposes.
<strong>This element represents strong importance for its contents. Use this tag whenever you want to convey importance for a particular word or phrase.

Here's what the HTML specification says about HTML bold and other emphasized/highlighted text:
The <b> element should be used as a last resort when no other element is more appropriate. In particular, headings should use the <h1> to <h6> elements, stress emphasis should use the <em> element, importance should be denoted with the <strong> element, and text marked or highlighted should use the <mark> element

Combining CSS Bold and HTML Bold

Actually, a combination of CSS and HTML is often the best way to bold text in HTML documents.
You should use HTML to define the meaning of the marked up text, then use CSS to define the way that the text looks.
As the HTML specification says:
Style sheets can be used to format <b> elements, just like any other element can be restyled. Thus, it is not the case that content in <b> elements will necessarily be boldened.

HTML Scrolling Text

HTML Scrolling Text       
This page contains copy/paste codes for scrolling text.
The easiest way to create scrolling text is to use the HTML <marquee> tag. You give your text a horizontal scroll (from right to left, left to right) or a vertical scroll (top to bottom, or bottom to top) - it's your choice!
Note that, although the <marquee> tag isn't an offical HTML tag, it is recognized by most of today's browsers. If you can't view the examples, it's likely that your browser doesn't support the <marquee> tag.


Right to Left (RTL)

This section contains text that scrolls horizontally (right to left, left to right, or a combination). As you can see, there are a number of options with your horizontal scroll.

Slide-In Text

This text slides in from the right, then stays where it is. You will need to refresh this page to see the effect again.
Example:
Your slide-in text goes here
Code:



Continuous scrolling text (RTL)

Example:
Your continuous scroll text goes here
Code:


Faster Scrolling

This example uses scrollamount="30" to increase the scroll speed.
Faster scrolling works better on continuous scrolling as opposed to slide-in text. This is because slide-in text stops after sliding in. If it slides in too fast, many users might miss the slide-in effect altogether.
Example:
Your continuous scrollable text goes here
Code:



Left to Right (LTR)

Slide-In Text

This text slides in from the left, then stays where it is. You will need to refresh this page to see the effect again.
Example:
Your slide-in text goes here
Code:


Continuous scrolling text (LTR)

Example:
Your continuous scrolling text goes here
Code:


Faster Scrolling

This example uses scrollamount="30" to increase the scroll speed.
Example:
Your continuous scrolling text goes here
Code:


Text bouncing back and forth:

Normal Speed

This text bounces at the default speed.
Example:
Your bouncing text goes here
Code:



Faster Bounce

This example uses scrollamount="30" to speed up the scrolling/bouncing text.
Example:
Your fast bouncing text goes here
Code:



Text Scrolling Up:

This text has a vertical scroll - it starts at the bottom and moves up. As with some of the previous examples, you can adjust the scroll speed by using the scrollamount attribute. You could also create a vertical slide by using behavior="slide".
Example:
Your upward scrolling text goes here
Code:




Text Scrolling Down:

This text also has a vertical scroll, but this time it starts at the top and moves down.
Example:
Your downward scroller text goes here
Code:



Various Scrolling Speeds:

This example demonstrates 3 different scrolling speeds.
Example:
Tortoise
Hare
Cheetah
Code:


Jumping Text

The following example uses the scrolldelay attribute to slow the scrolling text down and make it look like it's jumping across the screen. Actually, the example also uses the scrollamount attribute to increase the size of each jump.

Example:
Your continuous scroll text goes here
Code:



Marquee Attributes

The <marquee> tag accepts a number of attributes (some of which are included in the above examples). Feel free to experiment with these settings to see the effect they have on your scrolling text. The full list of attributes are:

widthSets the width of the marqueescrollamountHow far to jump as it moves
heightSets the height of the marqueeloopHow many times it should loop
directionSets the direction of the marqueebgcolorSets the background color of the marquee
behaviorWhether to slide, bounce, or scrollhspaceSets the amount of horizontal space around the marquee
scrolldelayHow long the marquee should wait before each jumpvspaceSets the amount of vertical space around the marquee

Falling Text

You can use scrolling text for some great effects. Check out this falling text (generated with the Falling Text Generator).

Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...Scrolling text effects...
<<Main Menu

HTML Lists Code

HTML Lists Code 
This page contains examples of HTML lists - examples of list-specific code that you can use for your own website.
To use the code, copy it straight from the text box and paste it into your own website. Feel free to modify it as required.
Some examples may not display properly. This will depend on your browser/user agent.





DescriptionCodeResult
Ordered List (numbered list)
  1. List item 1
  2. List item 2
  3. List item 3
Unordered List (unnumbered list)
  • List item 1
  • List item 2
  • List item 3
Definition List
Term 1
Definition of term 1
Term 2
Definition of term 2
Images as Bullets
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'disc'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'circle'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'square'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'decimal'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'decimal-leading-zero'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'lower-roman'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'upper-roman'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'lower-greek'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'lower-alpha'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'lower-latin'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'upper-alpha'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'upper-latin'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'hebrew'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'armenian'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'gregorian'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'cjk-ideographic'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'hiragana'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'katakana'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'hiragana-iroha'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'katakana-iroha'
  • List item 1
  • List item 2
  • List item 3
Bullet Type: 'none'
  • List item 1
  • List item 2
  • List item 3

www.RioTunes.blogspot.com

HTML Text Code

HTML Font Code 

The following font code sets common properties such as font size, line height, font family, and font color. Here are some more colors to choose from.


The above code results in this:
This font is 14pt, the line height is 20pt, it's color is orange, and the font family will be 'Garamond'. If the user's computer doesn't have 'Garamond', it will use 'Georgia'. Failing that it will use the default 'serif' font on the user's computer (this is often 'Times' or 'Times Roman' - just leave it as 'serif'). You can also specify bold text and italics if you wish!


Font Family

If you only want to specify the font family, you can use the 'font-family' property:

The above code results in this:
HTML font code is done using CSS.

Font Size

If you only want to specify the font size, you can use the 'font-size' property:

The above code results in this:
HTML font code is done using CSS.

Color

If you only want to specify the font color, you can use the 'color' property (more colors):

The above code results in this:
HTML font code is done using CSS.

Bold

You can make your font bold by using the 'font-weight' property:

The above code results in this:
HTML font code is done using CSS.
If you only want to bold some of the text inline, you can use the HTML 'span' tag:

The above code results in this:
You can bold parts of your text using the HTML 'span' tag.

Italic Text

You can make your text italic by using the 'font-style' property:

The above code results in this:
HTML font code is done using CSS.
If you only want to make some of the text italic, you can use the HTML 'span' tag:

The above code results in this:
You can make some of your text italic using the HTML 'span' tag.


***************************************
www.RioTunes.blogspot.com 
***************************************


HTML CODE COLLECTION >> 2011 [ FREE ]

HTML Codes - Free
Enjoy your free HTML codes here! Everything from basic music HTML codes, cool font codes, even free cursor codes!
You can copy/paste these codes straight into your web page, and in most cases, your MySpace page.



Text Codes


Table Codes

  • HTML Tables
  •  

Color Codes

  • HTML Color

Image Codes

  • HTML Image Borders 

HTML Links

  • HTML link

Background Codes

  • HTML Background Codes

Scroll Box Codes

  • Scroll Box

Comment Box Codes

  • Comment Box Codes

Marquee Codes

  • HTML Marquee Codes

Window Codes

  • HTML Close Window Codes

Music/Video Codes

  • Create a Music Playlist

Frames

  • HTML Frames Codes

Forms

  • HTML Form Codes


More HTML Codes

  • Contenteditable

MySpace Codes

  • MySpace HTML Tutorial

Free HTML Generators

  • Online HTML Editor

Free MySpace Generators

  • MySpace Comment Box Generator

HTML Reference

  • All HTML Tags

www.Riotunes.blogspot.com

free counters

Submit ExpressSEO Services & Tools