Monday, July 23, 2012

7 Important Tags When to Start work as an Entrepreneur

1. Create own self:

Nobody learn from Birth, Each and Every person create own self. You just take Idea from another 'How that Works' but you learn it in own way , language and manner. That means You are creating Own self because only You know What you need for your AIM. So, never think that entrepreneurs are making from birth. As I wrote on my previous article An Entrepreneur is a Good Learner How To Start to Live an Entrepreneur Life. So, make a good learner and work as a different Personality.

2. Ability to solve a single work with different ways:

An entrepreneur must have that he/she can solve a single work with different ways. Thats why, An entrepreneur is real Innovator beacuse he has solutions. Due to this feature, you will achieve your goal in many ways.
For e.g.
As I have to read about many entrepreneurs where I found that they start one company & if they get failure in first Idea then they going to thinking about another one and it happened always to become a chain of ideas and failures. I want to say that you should be ability to solve your single idea with different ways. Why you are backOff from your reality.

3. Always be prepared:

Without preparation never make positive illusion for your future because it will create problem in achieving your goal.

4. Concerned about How you will get:

Not to think about what will be after failure or success. Always think about process ‘How to reach to goal’.

5. Solve problem rather than to competition :

Have the thought of solve the problem rather than to always think about your competitor’s next move.

6. No much time for mistake:

One think always considered that you have no much time for doing the mistake. Beacuse your one mistake can become a billion dollar idea for another. So make a good business plan and product.

7. Go online:

You should join social networking sites and promote own self. Write about your products and gives all updates of your product on social network. Social network is a Fast Growing stage for any company and you will get more connections/network in few dollors investment.

Tuesday, July 3, 2012

How To Start to Live an Entrepreneur Life

1. First of all break all boundaries:

Break all your boundaries that create problems in your growth, in your thinking Or doing something new that you want to do but due to these boundaries your never be achieve. As my boundary is my family, they gave me 1 year to become an Entrepreneur. How they can decide when I will be an entrepreneur, when I Will be my own boss. So I have to decide to leave my house for my carrier.

2. Plan everything:

The most common feature of an entrepreneur is planning. You should not only plan for your Business but also make plan for each and every phase of your life. When you plan each and everything then you will be habitual of it.

3. Become a learner:

During the entery level of entrepreneur’s life, you should be start as a GOOD Learner and implement it with good Planning.

4. Do, what you enjoy most:

Do that work after which you feel better rather than to see another’s happiness.

5. Daily give time to own self:

Daily give time to own self and ask some questions to own self and try to find the answer of these questions
i) What new I am giving to the world??
ii) How I will server it to the world??

6. Make your mentor:

To make your mentor for understanding how to take a start up.

Wednesday, June 6, 2012

How to make select element of form like MAC(Aqua theme) Os without using of script


<!DOCTYPE html>
<html>
<head>

<title>Mac look select element</title>

<style>

  select { display: block;}

  div{
 border:1px solid #bbb;width:200px;  border-radius:6px;

-webkit-box-shadow:1px 1px 2px #bbb inset, 1px 1px 3px #ddd;
-khtml-box-shadow:1px 1px 2px #bbb inset, 1px 1px 3px #ddd;
box-shadow:1px 1px 2px #bbb inset, 1px 1px 3px #ddd;
     background:rgb(249,249,249) url(sprite1.png) no-repeat right center;
overflow:hidden;
  }


  #dropdown {
width:217px;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    padding: 0px 0px 0px 4px;
    border: none;
font:bold 12px Arial, Helvetica, sans-serif;
color:rgb(80,80,80);
background:transparent;

   }
</style>



this style use for less than IE8(IE7,IE6,IE5)
<!--[if lt IE 8]>

 <style>

  select { display: block; overflow:none;border:1px solid red;}

  div{
 border:none;width:200px; border-radius:6px;

box-shadow:1px 1px 2px #bbb inset, 1px 1px 3px #ddd!important;
     background:none;
background-image:none;
 overflow:none;
  }


  #dropdown {
width:150px;
    border:auto;
    outline:auto;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    padding: 0px 0px 0px 0px;
  
font:bold 12px Arial, Helvetica, sans-serif;
color:rgb(80,80,80);
background:transparent;
    border:1px solid red;
    background:#ddd;
    display:compact;


   }
</style>


 <![endif]-->


</head>
<body>
  <form>
  
      <div>
  
       <select id="dropdown" name="dropdown">
        <option selected="selected">Select</option>
        <option">None Select</option>
        <option>Must Select</option>
      </select>
     </div>
    
  </form>
</body>
</html>
Image use in it

In this I have to replace the right side arrow of dropdown(select) element of form wirhout using of any scripting


Output