โค้ดเมาส์ เป็นการแต่งลูกศรเมาส์ใน Hi5 หรือเว็บของเราให้ดูสวยงาม เพื่อนๆคงเคยเห็น Hi5 ของหลายๆคนนะครับ ที่มีตัวการ์ตูนน่ารักๆ รูปสัตว์ วิ่งตามเมาส์ใน Hi5 ซึ่งหลายๆคนก็ชอบเอามาแต่งใน Hi5 ของตัวเองครับ ซึ่งการใส่ โ้้ค้ดเมาส์ใน Hi5 นั้นมีขั้นตอนที่ง่ายมากเลย ซึ่งจะเป็นแบบเดียวกันหมดครับ ลองมาทำดูกันนะครับ
วิธีใส่โ้ค้ดเมาส์ Hi5 แต่ง Hi5 ให้สวยงาม
ผมยกตัวอย่าง Screen Shot การใส่ โค้ดเมาส์ จากเว็บ http://www.myspacecursor.net/ ซึ่งมี Cursor Mouse แจกมากมายเลยครับ1. ทำการเลือกหมวดเมาส์ที่เราอยากจะทำเป็น ตัวชี้เมาส์ใน Hi5 ของเรา
2. จะเห็นว่ามีโค้ดสำหรับใส่ใน Hi5 มากมายในกล่องข้อความ(Text Area) ซึ่งโ้ค้ดเมาส์ของเว็บนี้เวลาเราเลื่อนเมาส์ไปวางไว้บนกล่องใดกล่องหนึ่งก็จะมี รูปของเมาส์ที่เราจะนำไปแต่ง Hi5 แสดงออกมาครับ
3. เลือกโค้ดเมาส์ให้ถูกใจแล้วทำการ Copy โค้ดเมาส์ในกล่องข้อความ ตรงเลข 2 ไปวางไว้ที่ Hi5 ของเรา

4. เข้าโหมด Edit Profile ของ Hi5 ครับ ผมเอาไปใส่ในช่อง Interrest หรือจะเอาไปใส่ใ่นช่องไหนก็ได้ครับ โค้ดนี้จะไม่แสดงออกมาเป็นตัวหนังสือออกมาที่ Hi5 ของเรา จะออกมาเป็นไอคอนเมาส์น่ารักๆที่เราได้เลือกไว้ครับ เพียงแค่ระวังอย่าให้โค้ดเราไปปะปนกับโค้ดที่ีมีอยู่แล้ว
5 พอเราใส่โค้ดเมาส์ Hi5 ที่เราในช่องเรียบร้อยแล้วก็ทำการ Save Profile แล้วไปดูเมาส์ Hi5 ของเราได้เลยครับ
รวมเว็บแจกโค้ดเมาส์ สำหรับแต่งเว็บ และ Hi5
Free Myspace Cursors
http://www.myspacecursor.net/
Htmate2.com
http://www.htmate2.com/cursors/
123cursors.com
http://www.123cursors.com/
English Version
How to add mouse pointer to your hi5 , space , website ?? Let's do it!!
Make a nice hi5 , space , website with an easy tactics more beautiful and easy. I think you have seen somany a nice mouse pointer adding in webpage or hi5. Very easy Just Do it.!!
Screen Shot How to add mose pointer.
This is a screen shot example form http://www.myspacecursor.net/ Free mouse curser services1. Choose category that concerning about your interest mouse pointer style.
2. When you select category will show text area include code mouse already.
3. Move your mouse pointer over the text area. Your will see a mouse pointer change.
4. Choose your favorite mouse pointer.
5. Copy (Ctrl+C) all code in text area and then go to your Hi5.

6. In Edit Profile Section add your code that your copy form Free Mouse Cursor website and then Paste(Ctrl+V) into the box
7. Save your profile.
8. All Done.!!
Free Code mouse Cursors Webservices.
Free Myspace Cursors
Cursor Free Cursor code webgraphic for your space.
http://www.myspacecursor.net/
Htmate2.com
For Tons of mouse , musicvideo ,music audio Codes.
http://www.htmate2.com/cursors/
123cursors.com
Free cursors for myspace, xanga, friendster, neopets, livejournal and blogs.
http://www.123cursors.com/
Cascading Style Sheets (CSS)
In web development, Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can be applied to any kind of XML document, including SVG and XUL.
CSS is used to help readers of web pages to define colors, fonts, layout, and other aspects of document presentation. It is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation (written in CSS). This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, and reduce complexity and repetition in the structural content. CSS can also allow the same markup page to be presented in different styles for different rendering methods, such as on-screen, in print, by voice (when read out by a speech-based browser or screen reader) and on Braille-based, tactile devices. CSS specifies a priority scheme to determine which style rules apply if more than one rule matches against a particular element. In this so-called cascade, priorities or weights are calculated and assigned to rules, so that the results are predictable.
The CSS specifications are maintained by the World Wide Web Consortium (W3C). Internet media type (MIME type) text/css is registered for use with CSS by RFC 2318 (March 1998).
Syntax
CSS has a simple syntax, and uses a number of English keywords to specify the names of various style properties.
A style sheet consists of a list of rules. Each rule or rule-set consists of one or more selectors and a declaration block. A declaration-block consists of a list of semicolon-separated declarations in curly braces. Each declaration itself consists of a property, a colon (:), a value, then a semi-colon (;).
In CSS, selectors are used to declare which elements a style applies to, a kind of match expression. Selectors may apply to all elements of a specific type, or only those elements which match a certain attribute; elements may be matched depending on how they are placed relative to each other in the markup code, or on how they are nested within the document object model.
In addition to these, a set of pseudo-classes can be used to define further behavior. Probably the best-known of these is :hover, which applies a style only when the user 'points to' the visible element, usually by holding the mouse cursor over it. It is appended to a selector as in a:hover or #elementid:hover. Other pseudo-classes and pseudo-elements are, for example, :first-line, :visited or :before. A special pseudo-class is :lang(c), "c".
A pseudo-class selects entire elements, such as :link or :visited, whereas a pseudo-element makes a selection that may consist of partial elements, such as :first-line or :first-letter.
Selectors may be combined in other ways too, especially in CSS 2.1, to achieve greater specificity and flexibility.
Use of CSS
Prior to CSS, nearly all of the presentational attributes of HTML documents were contained within the HTML markup; all font colors, background styles, element alignments, borders and sizes had to be explicitly described, often repeatedly, within the HTML. CSS allows authors to move much of that information to a separate stylesheet resulting in considerably simpler HTML markup.
Headings (h1 elements), sub-headings (h2), sub-sub-headings (h3), etc., are defined structurally using HTML. In print and on the screen, choice of font, size, color and emphasis for these elements is presentational.
Prior to CSS, document authors who wanted to assign such typographic characteristics to, say, all h2 headings had to use the HTML font and other presentational elements for each occurrence of that heading type. The additional presentational markup in the HTML made documents more complex, and generally more difficult to maintain. In CSS, presentation is separated from structure. In print, CSS can define color, font, text alignment, size, borders, spacing, layout and many other typographic characteristics. It can do so independently for on-screen and printed views. CSS also defines non-visual styles such as the speed and emphasis with which text is read out by aural text readers. The W3C now considers the advantages of CSS for defining all aspects of the presentation of HTML pages to be superior to other methods. It has therefore deprecated the use of all the original presentational HTML markup.
Popular CSS
Some popular online networking sites use Style Sheets to design profiles and userpages, such as MySpace and Hi5.
Style sheet sources
CSS information can be provided by various sources. CSS style information can be either attached as a separate document or embedded in the HTML document. Multiple style sheets can be imported, and alternative style sheets can be specified so that the user can choose between them. Different styles can be applied depending on the output device being used; for example, the screen version can be quite different from the printed version, so that authors can tailor the presentation appropriately for each medium.
Author styles (style information provided by the web page author), in the form of
external stylesheets, i.e. a separate CSS-file referenced from the document
embedded style, blocks of CSS information inside the HTML document itself
inline styles, inside the HTML document, style information on a single element, specified using the "style" attribute.
User style
a local CSS-file specified by the user using options in the web browser, and acting as an override, to be applied to all documents.
User agent style
the default style sheet applied by the user agent, e.g. the browser's default presentation of elements.
One of the goals of CSS is also to allow users a greater degree of control over presentation; those who find the red italic headings difficult to read may apply other style sheets to the document. Depending on their browser and the web site, a user may choose from various stylesheets provided by the designers, may remove all added style and view the site using their browser's default styling or may perhaps override just the red italic heading style without altering other attributes.
CSS Example.
The example begins with a comment:
/* A sample style sheet */
The comment is followed by two statements. The first statement is an at-rule:
@import url(base.css);
The second statement is a rule set:
h2 {
color: #666;
font-weight: bold;
}
The rule set consists of a selector (the text before the left curly brace, {) and a declaration block (delimited with the curly braces, { … }). The block contains two declarations separated by semicolons:
color: #666;
font-weight: bold;
Each declaration includes a property name and a value, separated by a colon.
Thanks For : http://en.wikipedia.org/wiki/Cascading_Style_Sheets






