Friday, 20 December 2013

Don't be afraid


 Don't be afraid
Here we are, afraid of losing what we have all the time, holding on  to it so tight that not a soul can touch it. We think by hiding it from  the world, it’s hidden and it’s ours. Nothing is. Nothing ever will be.  For, nothing ever was.

If you think there is anything that you  have, that’s yours, be it money, a house, a job, or a girlfriend… it’s  nothing but an illusion. It’ll all disappear… in one blow. One blow, my  man.

Here we are, so insecure that we are afraid of re-starting  our lives, so we just carry on trying to sort out the current mess. The  thought that we should give it all up and just start all over – with  nothing – might cross our minds some time, sure, but we get scared and  we push away anything that scares us.

There is nothing I can ever  achieve or gain that I cannot lose, in a matter of seconds. You have  never gained enough to not be able to lose it all, in just a few  minutes. What you think is yours, was never yours and will never be  yours. Whatever you make here, you leave here. You came naked and you’re  going to go back naked.

So what are you afraid of?

Let all  be lost. Let them take away everything. As long as you have your heart  beating strong, as long as you have your nostrils working fine, as long  as the blood flows in your veins, you will live, you will breathe and  you can get it all back… again and again. For, if you can do it once,  you can damn well do it again. It’s just a game we play – Life.


More Stories


  1. Never Judge Anyone
  2. Believe in Yourself
  3. ''The Most Important Things In Life''
  4. Enjoy your life at every moment
  5. Helpless Love
  1. A Boy proposed his Girl-friend for Marriage
  2. Bullet
  3. Marriage
  1. 8 Lies Of A Mother
  2. Never Judge Anyone
  3. You are Unique!
  4. A reply from CEO of J.P. Morgan to a pretty girl seeking a rich husband
  5. A SALTY COFFEE
  6. Express your love
  7. Sarah
  8. Don't be afraid

Thursday, 19 December 2013

LABEL


label

Label for a form element (input, textarea or select).

Attributes
  • for can be used to associate the label to a form element when the value of for matches the value of an element's id attribute.
  • accesskey can be used to associate a keyboard shortcut to the element.
Example

<label for="email">e-mail address</label><input type="text" name="email" id="email" />

MAP


map

A client-side image map. Used in conjunction with area to map links to certain regions of an image.

Attributes
  • id is used to uniquely identify the element.
Optional Attributes
  • class can be used to reference the element with CSS.
  • title can be used to specify a title for the element.
Example

<map id ="atlas">
        <area shape ="rect" coords ="0,0,115,90" href ="northamerica.html" alt="North America" />
        <area shape ="poly" coords ="113,39,187,21,180,72,141,77,117,86" href ="europe.html" alt="Europe" />
        <area shape ="poly" coords ="119,80,162,82,175,102,183,102,175,148,122,146" href ="africa.html" alt="Africa" />
</map>

LI


li

List item. Used in conjunction with ul or olto make an unordered list or ordered list respectively.

Example

<ul>
        <li>This</li>
        <li>That</li>
        <li>The other</li>
</ul>

META


meta

Meta information. Used to provide information about the HTML page. It must be placed within the head element.

Attributes
  • content is used to specify the meta information itself.
Optional Attributes
  • name can be used to specify the name given to the meta information. The value can be anything, but common examples are description and author.
  • http-equiv can be used when name is not used to define an 'equivalent' HTTP header for the document. This is commonly used to specify the MIME type and character set when the author has no direct control over the server.
  • scheme can be used when name is used to specify how the value of content should be interpreted.
Example

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="darwin, evolution, natural selection, species, beagle, 1859" />
<meta scheme="ISBN"  name="identifier" content="0-14-043205-1" />

NOSCRIPT


noscript

Defines content to be used when a script can not be used (either because a browser does not support it or a user has switched off that functionality).

Example

<script type="text/javascript">
        [some JavaScript stuff]
</script>
<noscript>
        <p>What? No JavaScript?</p>
</noscript>

Wednesday, 18 December 2013

LEGEND


legend

Defines a caption for a fieldset. The element must appear directly after the opening fieldset tag.

Attributes
  • accesskey can be used to associate a keyboard shortcut to the element.
Example

<fieldset>
        <legend>Name</legend>
        <div>First name: <input name="firstname" /></div>
        <div>last name: <input name="surname" /></div>
</fieldset>





Other Topics

KBD

INPUT


input

A form element that can be represented as a text box, password text box, check box, radio button, submit button, reset button, hidden input field, image (which acts as a submit button), file selection box or general button.

Attributes
  • name can be used so that the value of the element can be processed.
  • type can be used to specify the type of input. Values can be text (default), password, checkbox, radio, submit, reset, hidden, image, file or button.
  • value can be used to specify the initial value. It is required when type is set to checkbox or radio. It should not be used when type is set to file.
  • checked can be used when type is set to checkbox or radio to set the initial state of a check box or radio button to be selected. It must be used in the format checked="checked".
  • maxlength can be used to specify the maximum number of characters allowed in a text box.
  • src can be used when type is set to image to specify the location of an image file.
  • alt can be used when type is set to image to specify the alternative text of the image, which should be a short description.
  • accept can be used when type is set to file to specify which file-types should be accepted. This is a comma-separated list of MIME types.
  • disabled can be used to disable an element. It must be used in the format disabled="disabled".
  • readonly can be used to specify that the value of the element can not be changed. It must be used in the format readonly="readonly".
  • accesskey can be used to associate a keyboard shortcut to the element.
  • tabindex can be used to specify where the element appears in the tab order of the page.
Example

<form action="somescript.php" />
        <p>Do you like pie?</p>
        <div>yes <input type="radio" name="pie" value="yes" checked="checked" /></div>
        <div>no <input type="radio" name="pie" value="no" /></div>
        <div>Your name: <input type="text" name="name" /></div>
        <div><input type="image" name="submitimage" src="someimage.gif" /></div>
</form>

Physics basic inventions and inventors

1.Which instrument is used to measure altitudes in aircraft's ? Audiometer Ammeter Altimeter Anemometer Explanation : ...