Posts

Showing posts from September, 2018

The art of salary negotiation

Image
Salary negotiations are the trickiest part of the deal when you’re heading into the dream job, or trying to be properly paid for the job you have. Your interview went well, and work offer has come in. Exciting right? Yes, except if the offer is lower than you were seeking for. You'll definitely have some blended feelings: from one perspective, you’re happy and relieved that your job search is finished, on the other, you're endeavoring to make sense of exactly how you can manage in the low salary   (Actually : you can't). So what do you do? Make it a goal this year to earn the salary you deserve. Instead of fearing salary negotiation, You can and should negotiate for a better starting salary, and here’s how. Do Your Research even before you have a meeting, you should to inquire about the organization and the sort of employment you've been offer. Get a better understanding of typical responsibilities and tasks, as well as an appropri...

HTML Cheat Sheet

Image
You want to learn HTML, Right? How many times have you  Googled :  “how to add forms in HTML” or “what is HTML” Having an appropriate cheat sheet will make your life a tone of easier. I've drilled down all the  standard HTML tags as well as the new HTMML5 tags in th given Cheat Sheet. Enjoy! Basic HTML Structure <html>   <head>   <title>website title</title>   </head>   <body>   content of website ...   </body> </html> Common Tags for Blogs Text Formatting  <h?> heading </h?> Heading (h1 for largest to h6 for smallest) <p> paragraph </p> Paragraph of Text <b> bold </b> Make text between tags  bold <i> italic </i> Make text between tags  italic <a href=" url "> link name </a> ...