Sunday 23 October 2011

Cisco CCNA Certification Requirements

Cisco has many different certifications courses which they offer in order to improve careers for individuals who are absolutely nuts about the IT world. One of the more popular certifications which is the foundation of the CCNP and CCIE, is the CCNA certification. Through the Cisco Certified Network Associate certification candidates gain skills installing, configuring, and operating networks.
The CCNA certification is an excellent path to take for individuals who are looking for a foot in the door to the IT industry; this is because there are no prerequisites to this certification course. Cisco has done a good job at giving prospective certification candidates options as to which exams they can take in order to meet the certification requirements. The CCNA test 640-801 is the first and only test required; however Cisco also offers tests 640-821 and 640-811 as alternatives if the 640-801 is not the test for you.
So what does it take to pass the CCNA exam? Cisco mentions on their website that they do not provide required passing scores on their site because questions and required scores change according to how they feel is best for candidates. Cisco does mention that once the CCNA certification is earned, it is good for three years. Recertification can be completed by either passing the CCNA certification exam again or by meeting their requirements of passing any of their 642 professional level or Cisco specialist exams according to their website. There are a few exams which are excluded, so be sure to check with the Cisco website if recertifying is a goal. Something which is nice is that Cisco will provide each holder with a reminder when it is time to consider recertifying via email.
The Cisco CCNA certification is a fantastic route to take if extra training or extended education is needed to strengthen a resume; however in order gain passing scores to become certified; preparation is mandatory. There are many different routes which can be taken in order to fully prepare for the exam. A popular method of IT professionals and certification candidates is through CBT courses. A computer based training program is a software program which can be installed on a personal computer allowing for a self-paced teaching tool to be utilized. These programs are usually all inclusive; meaning they come with everything needed to provide the user with the ability to pass certification exams after covering the course material. CBT courses allow for as much study as necessary and are designed to work around busy schedules. Some companies who offer computer based trainings have created software which includes hands-on simulations, such as TestOut.


Becoming CCNA certified is a great way to move into the IT industry and improve the quality of performance on the job. Other great certifications are the MCSE, A+, and Server+ certifications. The IT industry is growing, and the possibilities for success are awaiting your arrival. Mike Allen writes about IT certification training.
Sources: Cisco.com



www.freespaceinteriors.com

Send e-mail from a form


<html>
<body>

<h3>Send e-mail to someone@example.com:</h3>

<form action="MAILTO:someone@example.com" method="post" enctype="text/plain">
Name:<br />
<input type="text" name="name" value="your name" /><br />
E-mail:<br />
<input type="text" name="mail" value="your email" /><br />
Comment:<br />
<input type="text" name="comment" value="your comment" size="50" />
<br /><br />
<input type="submit" value="Send">
<input type="reset" value="Reset">

</form>
</body>
</html>

Form with radiobuttons and a submit button


<html>
<body>

<form name="input" action="html_form_action.asp" method="get">
<input type="radio" name="sex" value="male" /> Male<br />
<input type="radio" name="sex" value="female" /> Female<br />
<input type="submit" value="Submit" />
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>

Form with checkboxes and a submit button


<html>
<body>

<form name="input" action="html_form_action.asp" method="get">
<input type="checkbox" name="vehicle" value="Bike" /> I have a bike<br />
<input type="checkbox" name="vehicle" value="Car" /> I have a car
<br /><br />
<input type="submit" value="Submit" />
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>

Form with text fields and a submit button


<html>
<body>

<form name="input" action="html_form_action.asp" method="get">
First name: <input type="text" name="FirstName" value="Mickey" /><br />
Last name: <input type="text" name="LastName" value="Mouse" /><br />
<input type="submit" value="Submit" />
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>

Draw a border around form-data


<html>
<body>

<form action="">
<fieldset>
<legend>Personal information:</legend>
Name: <input type="text" size="30" /><br />
E-mail: <input type="text" size="30" /><br />
Date of birth: <input type="text" size="10" />
</fieldset>
</form>

</body>
</html>

Create a button


<html>
<body>

<form action="">
<input type="button" value="Hello world!">
</form>

</body>
</html>

Simple drop-down list


<html>
<body>

<form action="">
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>
</form>

</body>
</html>

Radio buttons


<html>
<body>

<form action="">
<input type="radio" name="sex" value="male" /> Male<br />
<input type="radio" name="sex" value="female" /> Female
</form>

<p><b>Note:</b> When a user clicks on a radio-button, it becomes checked, and all other radio-buttons with equal name become unchecked.</p>

</body>
</html>

Checkboxes


<html>
<body>

<form action="">
<input type="checkbox" name="vehicle" value="Bike" /> I have a bike<br />
<input type="checkbox" name="vehicle" value="Car" /> I have a car
</form>

</body>
</html>

Create password field


<html>
<body>

<form action="">
Username: <input type="text" name="user" /><br />
Password: <input type="password" name="password" />
</form>

<p><b>Note:</b> The characters in a password field are masked (shown as asterisks or circles).</p>

</body>
</html>

HTML Forms and Input - Create text fields


<html>
<body>

<form action="">
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
</form>

<p><b>Note:</b> The form itself is not visible. Also note that the default width of a text field is 20 characters.</p>

</body>
</html>

Definition list


<html>
<body>

<h4>A Definition List:</h4>
<dl>
  <dt>Coffee</dt>
  <dd>Black hot drink</dd>
  <dt>Milk</dt>
  <dd>White cold drink</dd>
</dl>

</body>
</html>

Nested list 2


<html>
<body>

<h4>A nested List:</h4>
<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
    <li>Black tea</li>
    <li>Green tea
      <ul>
      <li>China</li>
      <li>Africa</li>
      </ul>
    </li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

</body>
</html>

Nested list


<html>
<body>

<h4>A nested List:</h4>
<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
    <li>Black tea</li>
    <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

</body>
</html>

An ordered list


<html>
<body>

<h4>An Ordered List:</h4>
<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

</body>
</html>

HTML Lists - An unordered list


<html>
<body>

<h4>An Unordered List:</h4>
<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>

</body>
</html>

Saturday 22 October 2011

Create an image-map, with clickable regions


<html>
<body>

<p>Click on the sun or on one of the planets to watch it closer:</p>

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm" />
  <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm" />
  <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm" />
</map>

</body>
</html>

Insert images from another folder or another server


<html>
<body>

<p>An image from another folder:</p>
<img src="/images/chrome.gif" alt="Google Chrome" width="33" height="32" />

<p>An image from W3Schools:</p>
<img src="http://www.w3schools.com/images/w3schools_green.jpg" alt="W3Schools.com" width="104" height="142" />

</body>
</html>

Insert images


<html>
<body>

<p>
An image:
<img src="smiley.gif" alt="Smiley face" width="32" height="32" />
</p>

<p>
A moving image:
<img src="hackanm.gif" alt="Computer man" width="48" height="48" />
</p>

<p>
Note that the syntax of inserting a moving image is no different from a non-moving image.
</p>

</body>
</html>

How to link to a mail message (will only work if you have mail installed)


<html>
<body>

<p>
This is an email link:
<a href="mailto:someone@example.com?Subject=Hello%20again">
Send Mail</a>
</p>

<p>
<b>Note:</b> Spaces between words should be replaced by %20 to ensure that the browser will display the text properly.
</p>

</body>
</html>

Jump to another part of a document (on the same page)


<html>
<body>

<p>
<a href="#C4">See also Chapter 4.</a>
</p>

<h2>Chapter 1</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 2</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 3</h2>
<p>This chapter explains ba bla bla</p>

<h2><a name="C4">Chapter 4</a></h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 5</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 6</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 7</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 8</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 9</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 10</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 11</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 12</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 13</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 14</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 15</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 16</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 17</h2>
<p>This chapter explains ba bla bla</p>

</body>
</html>

Open link in a new browser window


<html>
<body>

<a href="http://www.freespaceinteriors.com" target="_blank">Visit Freespaceinteriors.com!</a>

<p>If you set the target attribute to "_blank", the link will open in a new browser window/tab.</p>

</body>
</html>

Use an image as a link


<html>
<body>

<p>Create a link of an image:
<a href="default.asp">
<img src="smiley.gif" alt="HTML tutorial" width="32" height="32" />
</a></p>

<p>No border around the image, but still a link:
<a href="default.asp">
<img border="0" src="smiley.gif" alt="HTML tutorial" width="32" height="32" />
</a></p>

</body>
</html>

HTML Links - How to create hyperlinks


<html>
<body>

<p>
<a href="default.asp">HTML Tutorial</a> This is a link to a page on this website.
</p>

<p>
<a href="http://www.freespaceinteriors.com/">Freespaceinteriors</a>
</p>

</body>
</html>

Style alignment of text


<html>
<body>

<h1 style="text-align:center;">Center-aligned heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

Style font, color, and size


<html>
<body>
<h1 style="font-family:verdana;">A heading</h1>
<p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p>
</body>
</html>

Style background color


<html>
<body style="background-color:yellow;">
<h2 style="background-color:red;">This is a heading</h2>
<p style="background-color:green;">This is a paragraph.</p>
</body>
</html>

HTML Styles - Style HTML elements


<html>
<body style="background-color:PowderBlue;">

<h1>Look! Styles and colors</h1>

<p style="font-family:verdana;color:red;">
This text is in Verdana and red</p>

<p style="font-family:times;color:green;">
This text is in Times and green</p>

<p style="font-size:30px;">This text is 30 pixels high</p>

</body>
</html>

Insert contact information


<html>
<body>

<address>
Written by W3Schools.com<br />
<a href="mailto:us@example.org">Email us</a><br />
Address: Box 564, Disneyland<br />
Phone: +12 34 56 78
</address>

</body>
</html>

How to mark deleted and inserted text


<html>
<body>

<p>My favorite color is <del>blue</del> <ins>red</ins>!</p>

<p>Notice that browsers will strikethrough deleted text and underline inserted text.</p>

</body>
</html>

HTML Text Formatting


<html>
<body>

<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><big>This text is big</big></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>

</body>
</html>

Insert horizontal lines


<html>
<body>
<p>The hr tag defines a horizontal rule:</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
<hr />
<p>This is a paragraph</p>
</body>
</html>

HTML Headings - Insert comments in the HTML source code


<html>
<body>

<!--This comment will not be displayed-->
<p>This is a regular paragraph</p>

</body>
</html>

HTML paragraphs


<html>
<body>

<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html>

HTML links


<html>
<body>

<a href="http://www.freespaceinteriors.com">
This is a link</a>

</body>
</html>

www.freespaceinteriors.com

HTML images


<html>
<body>

<img src="name.jpg" width="104" height="142" />

</body>
</html>

www.freespaceinteriors.com

HTML headings


<html>
<body>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

</body>
</html>

www.freespaceinteriors.com

HTML Examples - A very simple HTML document


<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

www.freespaceinteriors.com

Friday 21 October 2011

Spam, Scams and Russian Brides ~ Scotland Here And Now

Spam, Scams and Russian Brides ~ Scotland Here And Now
www.freespaceinteriors.com

List Of Back Links Websites: List Of Back Links Websites

List Of Back Links Websites: List Of Back Links Websites
www.freespaceinteriors.com

A short guide to imporove your credit score


Your credit score says a lot more about you than just your financial history. Many people use your score as a snapshot of your overall trustworthiness, including employers. It is definitely in your best interest to keep your credit score as high as possible, and to protect it at all costs.
Below are a few tips for improving your credit score.
- Check your credit score often
Even though the credit unions are international agencies with the best employees, they often make mistakes based on similar names or even similar Social Security numbers. You must check it to make sure that you are not the victim of an innocent mistake or fraudulent activity. Catching mistakes and frauds early is one of the best ways to improve your credit score over the long run.
- Handle debt situations quickly
If you are in debt, make sure to handle the situation as fast as possible. Contrary to popular belief, many of the debt solutions that the general public will not consider because of the supposed damage to a score actually do no damage at all if properly managed. For instance, debt consolidation many times has no effect on your score at all, as long as the payment schedule is worked out and all of the payments are made on time.
- Pay off all credit cards in full
If it is possible financially, you want to pay off all credit cards in full every month and do not leave a balance. Part of your score is the percentage use of your total credit. If you have adequate credit but you are not carrying over a balance month-to-month, then you get the full credit for having lines of credit that are going unused.
- Do not take out loans for monthly installments
Aside from a mortgage, you would do well to keep all monthly installment payments out of your financial reports. If these types of payments are not made on time, they can wreak havoc on your credit score. Pay for cars in all cash if at all possible. This is not only a good practice for your score, but also for your overall financial health.
- Neither a borrower or a lender be
In order to improve your credit score, do not attach any other people to it by cosigning for loans. The reason that a financial institution needs a cosigner is because in their expert opinion, they do not expect the principal borrower to pay back the loan. If that is the case then neither should you. Do not cosign for loans.

check