Labels: , , , ,

ब्लॉग पोस्ट में Arrow Key का प्रयोग करे

 
 दोस्तों आज मैं आपको ऐसी स्क्रिप्ट के बारे में बताऊंगा जिससे आपको और आपके पाठको को आपकी पोस्ट पढ़ने में आसानी होगी । इस स्क्रिप्ट को अपने ब्लॉग मे इन्स्टाल करने के बाद आपके पाठक आपके ब्लॉग पर कीबोर्ड की एरो की का इस्तेमाल करके आपकी अगली और पिछली पोस्ट पर जा सकते है । इस स्क्रिप्ट का उदाहरण यही हमारे ब्लॉग पर आप देख सकते है। आप अपने कीबोर्ड की राइट और लेफ्ट एरो की का इस्तेमाल करके हमारी पुरानी और नयी पोस्ट पर पहुच जाएंगे।
इसे अपने ब्लॉग पर इन्स्टाल करने के लिए निम्न चरणों का पालन करें........
  1. अपने ब्लॉग में लॉगिन करके डैशबोर्ड पर पहुचें
  2. Template पर क्लिक करके Edit HTML पर क्लिक करें
  3. अब नीचे दी हुयी स्क्रिप्ट को कॉपी करके </head> टैग के ऊपर  पेस्ट कर दे.  
  4. अब Save Template पर क्लिक करके बदलाव को सुरक्षित कर दे।
<script type='text/javascript'>
window.onload = function()
{
document.onkeyup = function(event)
{
if (document.activeElement.nodeName == 'TEXTAREA' || document.activeElement.nodeName == 'INPUT') return;
event = event || window.event;
switch(event.keyCode)
{
case 37:
var newerLink = document.getElementById('Blog1_blog-pager-newer-link');
if(newerLink !=null) window.location.href = newerLink.href;
break;
case 39:
var olderLink = document.getElementById('Blog1_blog-pager-older-link');
if(olderLink!=null) window.location.href = olderLink.href;
}
};
};
</script>
 उपरोक्त स्टेप करने के बाद आपके ब्लॉग पर स्क्रिप्ट सफलता पूर्वक इन्स्टाल हो जाएगी आप अपने ब्लॉग पर लेफ्ट और राइट एरो की का प्रयोग करके देख सकते है। अगर कोई समस्या हो तो मुझे मेल करे या कमेंट के माध्यम से बताए आपकी समस्या दूर करने की कोशिश करूंगा।

1 comments
Labels:

एचटीएमएल का परिचय

HTML के द्वारा आप अपनी Web site बना सकते है।
इसमें आपको HTMLके बारे मे सब कुछ सिखाया जायेगा ।
HTML सीखना आसान है।
 
HTML कोई बहुत पुरानी भाषा नहीं है इस भाषा का पहला वेब पेज नवम्बर 1990 में बना। फिर 'वर्ल्ड वाइड वेब कॉन्सोर्टियम' (World Wide Web Consortium)नामक एक समूह की स्थापना हुई जो कि HTML के मानकों को तय करती है।

वेब पेजेस

वेब पेजेस बहुत ही उपयोगी होते हैं। नीचे वेब पेजेस की कुछ महत्वपूर्ण उपयोगिताएँ दी जा रही हैं:
  • वेब पेजेस आपकी जानकारी को बहुत ही कम खर्च में अधिक से अधिक लोगों तक पहुँचा देते हैं।
     
  • वेब पेजेस उद्योग और व्यापार के लिये अति उत्तम साधन हैं।
     
  • वेब पेजेस के द्वारा ही संसार के लोग आपके व्यक्तिगत वेबसाइट को जानने लगते हैं।

HTML के आवश्यक शब्द

  • टैग (Tag) - टैग का प्रयोग ब्राउसर्स को HTML डाकुमेंट्स को समझाने के लिये किया जाता है यह इस प्रकार दिखाई देता है:
     
  • अवयव (Element) - एक टैग से शुरू हो कर दूसरे टैग में बंद होने वाले टैक्स्ट को अवयव कहा जाता है।
     
  • एट्रीब्यूट (Attribute) - एट्रीब्यूट का प्रयोग अवयव के रूप में परिवर्तन करने के लिये किया जाता है। प्रायः अवयवों में एक से अधिक एट्रीब्यूट्स का प्रयोग होता है।
हो सकता है कि ये परिभाषाएँ शुरू शुरू में समझने में कुछ कठिन लगें किन्तु बाद में अभ्यास करते करते ये आपको बहुत आसान लगने लगेंगी।
 
HTML कोई बहुत पुरानी भाषा नहीं है इस भाषा का पहला वेब पेज नवम्बर 1990 में बना। फिर 'वर्ल्ड वाइड वेब कॉन्सोर्टियम' (World Wide Web Consortium)नामक एक समूह की स्थापना हुई जो कि HTML के मानकों को तय करती है।

वेब पेजेस

वेब पेजेस बहुत ही उपयोगी होते हैं। नीचे वेब पेजेस की कुछ महत्वपूर्ण उपयोगिताएँ दी जा रही हैं:
  • वेब पेजेस आपकी जानकारी को बहुत ही कम खर्च में अधिक से अधिक लोगों तक पहुँचा देते हैं।
     
  • वेब पेजेस उद्योग और व्यापार के लिये अति उत्तम साधन हैं।
     
  • वेब पेजेस के द्वारा ही संसार के लोग आपके व्यक्तिगत वेबसाइट को जानने लगते हैं।

HTML के आवश्यक शब्द

  • टैग (Tag) - टैग का प्रयोग ब्राउसर्स को HTML डाकुमेंट्स को समझाने के लिये किया जाता है यह इस प्रकार दिखाई देता है:
     
  • अवयव (Element) - एक टैग से शुरू हो कर दूसरे टैग में बंद होने वाले टैक्स्ट को अवयव कहा जाता है।
     
  • एट्रीब्यूट (Attribute) - एट्रीब्यूट का प्रयोग अवयव के रूप में परिवर्तन करने के लिये किया जाता है। प्रायः अवयवों में एक से अधिक एट्रीब्यूट्स का प्रयोग होता है।
हो सकता है कि ये परिभाषाएँ शुरू शुरू में समझने में कुछ कठिन लगें किन्तु बाद में अभ्यास करते करते ये आपको बहुत आसान लगने लगेंगी।
 
- See more at: http://oyepages.com/blog/view/id/5140b58abc54b27539000007/context/BP#sthash.RKzdswnP.dpuf
HTML कोई बहुत पुरानी भाषा नहीं है इस भाषा का पहला वेब पेज नवम्बर 1990 में बना। फिर 'वर्ल्ड वाइड वेब कॉन्सोर्टियम' (World Wide Web Consortium)नामक एक समूह की स्थापना हुई जो कि HTML के मानकों को तय करती है।

वेब पेजेस

वेब पेजेस बहुत ही उपयोगी होते हैं। नीचे वेब पेजेस की कुछ महत्वपूर्ण उपयोगिताएँ दी जा रही हैं:
  • वेब पेजेस आपकी जानकारी को बहुत ही कम खर्च में अधिक से अधिक लोगों तक पहुँचा देते हैं।
     
  • वेब पेजेस उद्योग और व्यापार के लिये अति उत्तम साधन हैं।
     
  • वेब पेजेस के द्वारा ही संसार के लोग आपके व्यक्तिगत वेबसाइट को जानने लगते हैं।

HTML के आवश्यक शब्द

  • टैग (Tag) - टैग का प्रयोग ब्राउसर्स को HTML डाकुमेंट्स को समझाने के लिये किया जाता है यह इस प्रकार दिखाई देता है:
     
  • अवयव (Element) - एक टैग से शुरू हो कर दूसरे टैग में बंद होने वाले टैक्स्ट को अवयव कहा जाता है।
     
  • एट्रीब्यूट (Attribute) - एट्रीब्यूट का प्रयोग अवयव के रूप में परिवर्तन करने के लिये किया जाता है। प्रायः अवयवों में एक से अधिक एट्रीब्यूट्स का प्रयोग होता है।
हो सकता है कि ये परिभाषाएँ शुरू शुरू में समझने में कुछ कठिन लगें किन्तु बाद में अभ्यास करते करते ये आपको बहुत आसान लगने लगेंगी।
 
- See more at: http://oyepages.com/blog/view/id/5140b58abc54b27539000007/context/BP#sthash.RKzdswnP.dpuf
HTML कोई बहुत पुरानी भाषा नहीं है इस भाषा का पहला वेब पेज नवम्बर 1990 में बना। फिर 'वर्ल्ड वाइड वेब कॉन्सोर्टियम' (World Wide Web Consortium)नामक एक समूह की स्थापना हुई जो कि HTML के मानकों को तय करती है।

वेब पेजेस

वेब पेजेस बहुत ही उपयोगी होते हैं। नीचे वेब पेजेस की कुछ महत्वपूर्ण उपयोगिताएँ दी जा रही हैं:
  • वेब पेजेस आपकी जानकारी को बहुत ही कम खर्च में अधिक से अधिक लोगों तक पहुँचा देते हैं।
     
  • वेब पेजेस उद्योग और व्यापार के लिये अति उत्तम साधन हैं।
     
  • वेब पेजेस के द्वारा ही संसार के लोग आपके व्यक्तिगत वेबसाइट को जानने लगते हैं।

HTML के आवश्यक शब्द

  • टैग (Tag) - टैग का प्रयोग ब्राउसर्स को HTML डाकुमेंट्स को समझाने के लिये किया जाता है यह इस प्रकार दिखाई देता है:
     
  • अवयव (Element) - एक टैग से शुरू हो कर दूसरे टैग में बंद होने वाले टैक्स्ट को अवयव कहा जाता है।
     
  • एट्रीब्यूट (Attribute) - एट्रीब्यूट का प्रयोग अवयव के रूप में परिवर्तन करने के लिये किया जाता है। प्रायः अवयवों में एक से अधिक एट्रीब्यूट्स का प्रयोग होता है।
हो सकता है कि ये परिभाषाएँ शुरू शुरू में समझने में कुछ कठिन लगें किन्तु बाद में अभ्यास करते करते ये आपको बहुत आसान लगने लगेंगी।
 
- See more at: http://oyepages.com/blog/view/id/5140b58abc54b27539000007/context/BP#sthash.RKzdswnP.dpuf

HTML Basic

HTML क्या है ?

  • HTML का पुरा नाम Hyper Text Markup Language है ।
  • HTML एक markup language है।
  • एक markup language markup tags का सेट होता है।
  • जिसमें markup tags  की मदद से पृष्ठ तैयार किया जाता है ।
  • HTML documents में HTML tags और plain text होते है ।
  • HTML documents को web pages भी कहा जाता है ।

HTML Tags (HTML Tags क्या होते है ?)

  • HTML tags कुछ शब्द (tag names) होते है, जो दोनो और से angle brackets से बंधे होते है, जैसे -  <html>
  • HTML tags सामान्यत: जोडे मे होते है, जैसे <b> और </b>
  • जोडे  का पहला tag - start tag, और दुसरा tag - end tag कहलाता है ।
  • end tag भी start tag की तरह ही लिखा जाता है, पर इसमें tag के नाम के पहले forward slash ( / )
  •  Start and end tags को opening tags और closing tags भी कहा जाता है ।
<tagname> आपका content </tagname>

HTML Elements क्या होते है ?

"HTML tags" और "HTML elements" को सामान्यत: एक ही वस्तु कहा जाता है।
पर असल में, एक HTML element वह सब कुछ है जो start tag और end tag के बीच लिखा जाता है,:
HTML Element:
<p>This is a paragraph.</p>

HTML Page  का ढांचा (structure)

HTML Page  का ढांचा  निम्न प्रकार का है ।


 
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html> 

0 comments
Labels:

एचटीएमएल टेक्स्ट फोर्मटिंग (HTML Text Formatting )

HTML Text Formatting

This text is bold

This text is italic

This is computer output

This is subscript and superscript

HTML Text Formatting Tags

Tag
Description
Examples
<b>
text को bold करने के लिये नोट: HTML 5 मे इस्का प्रयोग कम या अंतिम विकल्प के रुप मे करते है। आप text को bold सेट करने के लोये CSS की "font-weight" का प्रयोग भी कर सकते है।
<p>This is normal text - <b>and this is bold text</b></p>
<em>
text को emphasized करने के लिये नोट:  <em> tag एक phrase tag है
<em>Emphasized text</em>
<i>
Defines a part of text in an alternate voice or mood
<p>He named his car <i>The lightning</i>, because it was very fast.</p>
<small>
text को smaller करने के लिये
नोट: This tag is not deprecated, but it is possible to achieve richer effect with CSS
<p>W3Schools.com - the world's largest web development site.</p>
<p><small>Copyright 1999-2050 by Refsnes Data</small></p>

<strong>
text को important करने के लिये नोट: <strong> tag एक phrase tag है नोट: This tag is not deprecated, but it is possible to achieve richer effect with CSS
<strong>Strong text</strong>
<sub>
text को subscripted करने के लिये, जैसे- H2O
<p>This text contains <sub>subscript</sub> text.</p>
<sup>
text को superscripted करने के लिये, जैसे- WWW[1]
<p>This text contains <sup>superscript</sup> text.</p>
<ins>
text को inserted करने के लिये नोट: Browsers will normally strike a line through deleted text and underline inserted text.
<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>
<del>
text को deleted करने के लिये
<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>

Attributes <del><ins>


cite
एक पेज के  URL के लिये जो यह विस्तार से बताता है कि text क्यो delete किया गया 
<p><del cite="del_demo_cite.htm">This text has been deleted</del></p>
datetime
YYYY-MM-DDThh:mm:ssTZD
उस date और time के लिए जब text delete किया गया  Attribute Value
YYYY-MM-DDThh:mm:ssTZD
Explanation of components:
  • YYYY - year (e.g. 2012)
  • MM - month (e.g. 01 for January)
  • DD - day of the month (e.g. 08)
  • T - a required separator
  • hh - hour (e.g. 22 for 10.00pm)
  • mm - minutes (e.g. 55)
  • ss - seconds (e.g. 03)
  • TZD - Time Zone Designator (Z denotes Zulu, also known as Greenwich Mean Time)
<p>
<del datetime="2011-11-15T22:55:03Z">This text has been deleted</del>
</p>
<mark>
text को marked/highlighted करने के लिये
नोट : new in HTML5
<p>Do not forget to buy <mark>milk</mark> today.</p>

HTML "Computer Output" Tags


<code>
computer code text के लिये प्रयोग होता है नोट : <code> tag is a phrase tag.
<code>A piece of computer code</code>
<samp>
keyboard text के लिये प्रयोग होता है नोट : <samp>tag is a phrase tag.
<kbd>Keyboard input</kbd>
<samp>
sample computer code के लिये प्रयोग होता है नोट : <samp>tag is a phrase tag.
<samp>Sample output from a computer program</samp>
<var>
variable के लिये प्रयोग होता है नोट : <var>tag is a phrase tag.
<var>Variable</var>
<pre>
preformatted text के लिये प्रयोग होता है
नोट : <pre> element का Attributes
width होता है जिसकी value number मे होती है । नोट : Not supported in HTML5. Deprecated in HTML 4.01. Specifies the maximum number of characters per line
<pre>
Text in a pre element
is displayed in a fixed-width
font, and it preserves
both      spaces and
line breaks
</pre>
<pre width="30">
Text in a pre element is displayed in a fixed-width
font, and it preserves both     spaces    and
line breaks
</pre>

HTML Citations, Quotations, and Definition Tags


<abbr>
abbreviation या acronym के लिये प्रयोग होता है नोट : The global title attribute can be used in the <abbr> tag to show the full version of the abbreviation/acronym when you mouse over the <abbr> element
नोट : <abbr> tag is not supported in IE 6
or earlier versions.
The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.

<address>
HTML पेज के लेखक या मालिक के बारे मे जानकारी के लिये इसका प्रयोग किया जाता है । नोट : The <address> tag should NOT be used to describe a postal address, unless it is a part of the contact information. नोट : The <address> element will typically be included along with other information in a <footer> element.
<address>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
<bdo>
text direction के लिये प्रयोग किया जाता है । नोट : इसका Attributes dir और Value ltr या rtl होते है।
<bdo dir="ltr|rtl">
ltr- बाँये से दाँये text direction
rtl-  दाँये से बाँये text direction
<bdo dir="rtl">
This text will go right-to-left.
</bdo>
<blockquote>
<blockquote> tag का प्रयोग एक section के लिये किया जाता है जो किसी अन्य source से quoted होता है। नोट : inline (short) quotations के लिए <q> का प्रयोग करें नोट : इसका Attributes cite और Value URL होते है। जो Specifies the source of the quotation
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world’s leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>
<q>
<blockquote> tag का प्रयोग inline (short) quotation के लिये किया जाता है नोट : इसका Attributes cite और Value URL होते है।
<p>WWF's goal is to:
<q>Build a future where people live in harmony with nature.</q>
We hope they succeed.</p>
<p>WWF's goal is to:
<q cite="http://www.wwf.org">
Build a future where people live in harmony with nature.</q>
We hope they succeed.</p>
<cite>
इसका प्रयोग किसी काम को title देने के लिये किया जाता है । जैसे - a book, a song, a movie, a TV show, a painting, a sculpture, आदि नोट : A person's name is not the title of a work
<p><cite>The Scream</cite> by Edward Munch. Painted in 1893.</p>

<dfn>
इसका प्रयोग definition term के लिये किया जाता है । नोट : <dfn>tag is a phrase tag.
<dfn>Definition term</dfn>

0 comments
Labels:

एचटीएमएल क्विक लिस्ट (HTML Quick List)

HTML tools की एक Quick List जिससे आप उपरिक्त सभी को अच्छी तरह समझ सकते है। Print करो, मोडों, और अपनी जेब मे रखों।

HTML पेज की शुरुआत (HTML Basic Document)

<!DOCTYPE html>
<html>
<head>
<title>Title of document goes here</title>
</head>

<body>
Visible text goes here...
</body>
</html>

शुरुआती Tags (Basic Tags)

<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>

<p>This is a paragraph.</p>
<br> (line break)
<hr> (horizontal rule)
<!-- This is a comment -->

शब्दों के लिये (Formatting)

<b>Bold text</b>
<code>Computer code</code>
<em>Emphasized text</em>
<i>Italic text</i>
<kbd>Keyboard input</kbd>
<pre>Preformatted text</pre>
<small>Smaller text</small>
<strong>Important text</strong>

<abbr> (abbreviation)
<address> (contact information)
<bdo> (text direction)
<blockquote> (a section quoted from another source)
<cite> (title of a work)
<del> (deleted text)
<ins> (inserted text)
<sub> (subscripted text)
<sup> (superscripted text)

लिंक बनाने के लिये (Links)

Ordinary link: <a href="http://www.example.com/">Link-text goes here</a>
Image-link: <a href="http://www.example.com/"><img src="URL" alt="Alternate Text"></a>
Mailto link: <a href="mailto:webmaster@example.com">Send e-mail</a>
Bookmark:
<a id="tips">Tips Section</a>
<a href="#tips">Jump to the Tips Section</a>

चित्रों के लिये (Images)

<img src="URL" alt="Alternate Text" height="42" width="42">

Styles/Sections के लिये (Styles/Sections)

<style type="text/css">
  h1 {color:red;}
  p {color:blue;}
</style>

<div>A block-level section in a document</div>
<span>An inline section in a document</span>

डॉट वाली लिस्ट (Unordered list)

<ul>
  <li>Item</li>
  <li>Item</li>
</ul>

नम्बर वाली लिस्ट (Ordered list)

<ol>
  <li>First item</li>
  <li>Second item</li>
</ol>

व्याख्या वाली लिस्ट (Definition list)

<dl>
  <dt>Item 1</dt>
    <dd>Describe item 1</dd>
  <dt>Item 2</dt>
    <dd>Describe item 2</dd>
</dl>

टेबल (Tables)

<table border="1">
  <tr>
    <th>table header</th>
    <th>table header</th>
  </tr>
  <tr>
    <td>table data</td>
    <td>table data</td>
  </tr>
</table>

फ़्रेम्स (Iframe)

<iframe src="demo_iframe.htm"></iframe>

फ़ॉर्म (Forms)

<form action="demo_form.asp" method="post/get">
<input type="text" name="email" size="40" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit" value="Send">
<input type="reset">
<input type="hidden">
<select>
<option>Apples</option>
<option selected="selected">Bananas</option>
<option>Cherries</option>
</select>

<textarea name="comment" rows="60" cols="20"></textarea>

</form>

विशेष शब्द (Entities)

&lt; is the same as <
&gt; is the same as >
&#169; is the same as ©

0 comments
Labels:

एचटीएमएल कलर

HTML Colors यानि  RED, GREEN और BLUE लाइट को मिलाकर जो दिखाई देता है ।

Color Values

HTML colors मे Red, Green, and Blue की color values (RGB) के combination को एक  hexadecimal notation (HEX) के रुप मे लिखा जाता है
इसमे सबसे कम value जो एक  light sourcesके लिये दी जा सकती है वो है 0 (in HEX में: 00) और सबसे ज्यादा value है 255 (HEX में: FF).
HEX values को two-digit numbers के 3 pairs (जोडो) मे लिखा जाता है, यानि यह 6 अंको का होता है जो # के निशान से शुरु होता है।

Color Values
Color
Color HEX
Color RGB
#000000
rgb(0,0,0)
#FF0000
rgb(255,0,0)
#00FF00
rgb(0,255,0)
#0000FF
rgb(0,0,255)
#FFFF00
rgb(255,255,0)
#00FFFF
rgb(0,255,255)
#FF00FF
rgb(255,0,255)
#C0C0C0
rgb(192,192,192)
#FFFFFF
rgb(255,255,255)


16 Million Different Colors

Red Light
Color HEX
Color RGB
#000000 
rgb(0,0,0) 
#080000 
rgb(8,0,0) 
#100000 
rgb(16,0,0) 
#180000 
rgb(24,0,0) 
#200000 
rgb(32,0,0) 
#280000 
rgb(40,0,0) 
#300000 
rgb(48,0,0) 
#380000 
rgb(56,0,0) 
#400000 
rgb(64,0,0) 
#480000 
rgb(72,0,0) 
#500000 
rgb(80,0,0) 
#580000 
rgb(88,0,0) 
#600000 
rgb(96,0,0) 
#680000 
rgb(104,0,0) 
#700000 
rgb(112,0,0) 
#780000 
rgb(120,0,0) 
#800000 
rgb(128,0,0) 
#880000 
rgb(136,0,0) 
#900000 
rgb(144,0,0) 
#980000 
rgb(152,0,0) 
#A00000 
rgb(160,0,0) 
#A80000 
rgb(168,0,0) 
#B00000 
rgb(176,0,0) 
#B80000 
rgb(184,0,0) 
#C00000 
rgb(192,0,0) 
#C80000 
rgb(200,0,0) 
#D00000 
rgb(208,0,0) 
#D80000 
rgb(216,0,0) 
#E00000 
rgb(224,0,0) 
#E80000 
rgb(232,0,0) 
#F00000 
rgb(240,0,0) 
#F80000 
rgb(248,0,0) 
#FF0000 
rgb(255,0,0) 

Shades of Gray

Gray Shades
Color HEX
Color RGB
#000000 
rgb(0,0,0) 
#080808 
rgb(8,8,8) 
#101010 
rgb(16,16,16) 
#181818 
rgb(24,24,24) 
#202020 
rgb(32,32,32) 
#282828 
rgb(40,40,40) 
#303030 
rgb(48,48,48) 
#383838 
rgb(56,56,56) 
#404040 
rgb(64,64,64) 
#484848 
rgb(72,72,72) 
#505050 
rgb(80,80,80) 
#585858 
rgb(88,88,88) 
#606060 
rgb(96,96,96) 
#686868 
rgb(104,104,104) 
#707070 
rgb(112,112,112) 
#787878 
rgb(120,120,120) 
#808080 
rgb(128,128,128) 
#888888 
rgb(136,136,136) 
#909090 
rgb(144,144,144) 
#989898 
rgb(152,152,152) 
#A0A0A0 
rgb(160,160,160) 
#A8A8A8 
rgb(168,168,168) 
#B0B0B0 
rgb(176,176,176) 
#B8B8B8 
rgb(184,184,184) 
#C0C0C0 
rgb(192,192,192) 
#C8C8C8 
rgb(200,200,200) 
#D0D0D0 
rgb(208,208,208) 
#D8D8D8 
rgb(216,216,216) 
#E0E0E0 
rgb(224,224,224) 
#E8E8E8 
rgb(232,232,232) 
#F0F0F0 
rgb(240,240,240) 
#F8F8F8 
rgb(248,248,248) 
#FFFFFF 
rgb(255,255,255) 

Web Safe Colors
 
000000
000033
000066
000099
0000CC
0000FF
003300
003333
003366
003399
0033CC
0033FF
006600
006633
006666
006699
0066CC
0066FF
009900
009933
009966
009999
0099CC
0099FF
00CC00
00CC33
00CC66
00CC99
00CCCC
00CCFF
00FF00
00FF33
00FF66
00FF99
00FFCC
00FFFF
330000
330033
330066
330099
3300CC
3300FF
333300
333333
333366
333399
3333CC
3333FF
336600
336633
336666
336699
3366CC
3366FF
339900
339933
339966
339999
3399CC
3399FF
33CC00
33CC33
33CC66
33CC99
33CCCC
33CCFF
33FF00
33FF33
33FF66
33FF99
33FFCC
33FFFF
660000
660033
660066
660099
6600CC
6600FF
663300
663333
663366
663399
6633CC
6633FF
666600
666633
666666
666699
6666CC
6666FF
669900
669933
669966
669999
6699CC
6699FF
66CC00
66CC33
66CC66
66CC99
66CCCC
66CCFF
66FF00
66FF33
66FF66
66FF99
66FFCC
66FFFF
990000
990033
990066
990099
9900CC
9900FF
993300
993333
993366
993399
9933CC
9933FF
996600
996633
996666
996699
9966CC
9966FF
999900
999933
999966
999999
9999CC
9999FF
99CC00
99CC33
99CC66
99CC99
99CCCC
99CCFF
99FF00
99FF33
99FF66
99FF99
99FFCC
99FFFF
CC0000
CC0033
CC0066
CC0099
CC00CC
CC00FF
CC3300
CC3333
CC3366
CC3399
CC33CC
CC33FF
CC6600
CC6633
CC6666
CC6699
CC66CC
CC66FF
CC9900
CC9933
CC9966
CC9999
CC99CC
CC99FF
CCCC00
CCCC33
CCCC66
CCCC99
CCCCCC
CCCCFF
CCFF00
CCFF33
CCFF66
CCFF99
CCFFCC
CCFFFF
FF0000
FF0033
FF0066
FF0099
FF00CC
FF00FF
FF3300
FF3333
FF3366
FF3399
FF33CC
FF33FF
FF6600
FF6633
FF6666
FF6699
FF66CC
FF66FF
FF9900
FF9933
FF9966
FF9999
FF99CC
FF99FF
FFCC00
FFCC33
FFCC66
FFCC99
FFCCCC
FFCCFF
FFFF00
FFFF33
FFFF66
FFFF99
FFFFCC
FFFFFF

 

HTML Color Names

Color Names Supported by All Browsers

141 कलर के नाम भी HTML and CSS color specification (17 standard colors और 124 और) मे प्रयोग किये जा सकते है। निम्न table मे उन सभी की  hexadecimal values के साथ list दी गई है।.
नोट : The 17 standard colors है: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, orange, purple, red, silver, teal, white, and yellow.

Sorted by Color Name

Color Name
HEX
Color
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix

21-  HTML Color Values

Sorted by Hex Value

Color Name
HEX
Color
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
Shades
Mix
 

0 comments
Related Posts Plugin for WordPress, Blogger...
 
Shreesh Computer World © 2014 | Designed by Canvas Art, in collaboration with Business Listings , Radio stations and Corporate Office Headquarters