Tuesday, June 30, 2015
Saturday, June 27, 2015
My fun world, Best Jokes
One day at a famous Mental Hospital the duty Doctor keep on his daily routine checkup, in that time he seems to be very pleased to see a patient, who is taking medication there for few years. They are talking each other:
Doctor: Thanks God, you are looking very well.
Patient: Can I go home?
Doctor : We have two news for you but one is good and other is bad for you. Now tell me which one you want to hear first?
Patient: Ok, you can tell me first the good news.
Doctor: Today when you save one patient who is going to be death into the pond. We sure you are going to be normal. So we decide to release you from here.
Patient: It means I can go home. Thank you Doctor. Let me tell the bad news.
Doctor: We are sorry to say the patient who gets new life from you today morning, we found his dead body is hanging nearest mango tree besides the pond in the afternoon.
Patient: Oh doctor don't worry. After I pick him up from the water I am the person who hang him to the mango tree for dry him.
Doctor: Thanks God, you are looking very well.
Patient: Can I go home?
Doctor : We have two news for you but one is good and other is bad for you. Now tell me which one you want to hear first?
Patient: Ok, you can tell me first the good news.
Doctor: Today when you save one patient who is going to be death into the pond. We sure you are going to be normal. So we decide to release you from here.
Patient: It means I can go home. Thank you Doctor. Let me tell the bad news.
Doctor: We are sorry to say the patient who gets new life from you today morning, we found his dead body is hanging nearest mango tree besides the pond in the afternoon.
Patient: Oh doctor don't worry. After I pick him up from the water I am the person who hang him to the mango tree for dry him.
Monday, June 22, 2015
Sunday, June 21, 2015
How to be a software Engneer 03
Write HTML Using Notepad or TextEdit
HTML can be edited by using a professional HTML editor like:- Adobe Dreamweaver
- Microsoft Expression Web
- CoffeeCup HTML Editor
We believe using a simple text editor is a good way to learn HTML.
Follow the 4 steps below to create your first web page with Notepad.
Step 1: Open Notepad
To open Notepad in Windows 7 or earlier:Click Start (bottom left on your screen). Click All Programs. Click Accessories. Click Notepad.
To open Notepad in Windows 8 or later:
Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad.
Step 2: Write Some HTML
Write or copy some HTML into Notepad.
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Step 3: Save the HTML Page
Save the file on your computer.Select File > Save as in the Notepad menu.
Name the file "index.htm" or any other name ending with htm.
UTF-8 is the preferred encoding for HTML files.
ANSI encoding covers US and Western European characters only.
Step 4: View HTML Page in Your Browser
Open the saved HTML file in your favorite browser. The result will look much like this:Thursday, June 11, 2015
How to Be a Software Engineer 01
HTML(5) Tutorial
HTML can help you to create your own Web site.This tutorial teaches you everything about HTML.HTML is easy to learn -Lets go.
HTML Introduction
What is HTML?
HTML is a markup language for describing web documents (web pages).- HTML stands for Hyper Text Markup Language
- A markup language is a set of markup tags
- HTML documents are described by HTML tags
- Each HTML tag describes different document content
HTML Example
A small HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
- The DOCTYPE declaration defines the document type to be HTML
- The text between <html> and </html> describes an HTML document
- The text between <head> and </head> provides information about the document
- The text between <title> and </title> provides a title for the document
- The text between <body> and </body> describes the visible page content
- The text between <h1> and </h1> describes a heading
- The text between <p> and </p> describes a paragraph
HTML Tags
HTML tags are keywords (tag names) surrounded by angle brackets:
<tagname>content</tagname>
- HTML tags normally come in pairs like <p> and </p>
- The first tag in a pair is the start tag, the second tag is the end tag
- The end tag is written like the start tag, but with a slash before the tag name
Outsourcing
Outsourcing is a very popular income source. Any educated people who has a computer, internet connection, English language knowledge and time to work at home can earn money.
Learning English
It is very common information that English is an International Language. We can get lots of knowledge from our educational institutions. But we need practice and practice for improving ourselves in this language. So from today if we decide to try to write something or speaking with some one with English it is very helpful for us. We would not worry about the accuracy of the language, may be it has some mistakes of subject verb agreements, tense, articles and using of synonyms. So we have to revise those points for improving our knowledge.
So guys lets start and go ahead.
So guys lets start and go ahead.
Subscribe to:
Posts (Atom)