Saturday, September 27, 2014
Thursday, September 25, 2014
How To Create Shutdown Shortcut in Windows
1. Press right click in the of desktop.
2. Click New and then click shortcut again.
3. Write down shutdown -s -t 0 in the box.
4. Click Next.
5. Click Finish.
Now, you can do shutdown your computer by pressing this shortcut.
2. Click New and then click shortcut again.
3. Write down shutdown -s -t 0 in the box.
4. Click Next.
5. Click Finish.
Now, you can do shutdown your computer by pressing this shortcut.
How to clean crush files in Windows Computer
1. Press Windows Key and R key together.
2. Type %temp% in the Run Box.
3. Select All (ctrl + a).
4. Click Delete.
5. Type prefetch in the Run Box.
6. Select All (ctrl + a).
7. Click Delete.
2. Type %temp% in the Run Box.
3. Select All (ctrl + a).
4. Click Delete.
5. Type prefetch in the Run Box.
6. Select All (ctrl + a).
7. Click Delete.
Wednesday, September 10, 2014
Basic Html & CSS
When we design the website, we need to use css and html together. css and html is the most important languages for those who are trying to get in web development field. The following is the very basic sample of html and css.
<html>
<head>
<title>T N W</title>
<style type="text/css">
p{color:red; background:black; width: 200 px;}
</style>
</head>
<body>
<p>Hello, This is HTML Testing!!!</p>
</body>
</html>
(Note: this post is designated for beginners).
<html>
<head>
<title>T N W</title>
<style type="text/css">
p{color:red; background:black; width: 200 px;}
</style>
</head>
<body>
<p>Hello, This is HTML Testing!!!</p>
</body>
</html>
(Note: this post is designated for beginners).
Cisco Certifications
Cisco certifications are one of the famous certifications in networking field.
This is all bout Cisco Certifications for brothers and sisters who are trying to take Cisco exams. If you want to learn, click here.
Monday, September 8, 2014
Html Link
Link is used when we want to refer to other urls or other web sites or other pages. And if we want to give download links, we use link.
The format of link in html is < a href =" "></a>
The following is sample of link in html.
<html>
<head>
<title> T N W</title>
</head>
<body>
<p>
If you want to go Google, Please Click <a href="https://www.google.com"> Here </a>
</p>
</body>
</html>
The format of link in html is < a href =" "></a>
The following is sample of link in html.
<html>
<head>
<title> T N W</title>
</head>
<body>
<p>
If you want to go Google, Please Click <a href="https://www.google.com"> Here </a>
</p>
</body>
</html>
Friday, September 5, 2014
How to write html form
html form is used when we want to create login form or submit form or registration form and etc... .
The following is sample of html form.
<html><head>
<title>T N W</title>
</head>
<body>
<form>
User Name </br>
<input type="text" name="user"></br></br>
Password </br>
<input type="password" name="passowrd"></br></br>
<input type="Submit" value="LogIn">
</form>
</body>
</html>
The following is sample of html form.
<html><head>
<title>T N W</title>
</head>
<body>
<form>
User Name </br>
<input type="text" name="user"></br></br>
Password </br>
<input type="password" name="passowrd"></br></br>
<input type="Submit" value="LogIn">
</form>
</body>
</html>
Thursday, September 4, 2014
HTML Basic
html is very basic programming language for those who are trying to get in web development fields. Whatever you are php web developer or asp.net web developer, you need to use html. So, we need to learn html first to develop any kind of websites.
Lets start to write html codes.
The following is begin of html codes.
<html><head>
<title> T N W </title>
</head>
<body>
<p>
How are you.....
</p
</body>
</html>
Lets start to write html codes.
The following is begin of html codes.
<html><head>
<title> T N W </title>
</head>
<body>
<p>
How are you.....
</p
</body>
</html>