Wednesday, 7 May 2014

Why should we use html with css ?

In html, suppose we have to give a particular font family, color and size. Then we have to write all the codes again and again in html.
            But by the help of css, we define that code once in the beginning and use all over the webpage without writing again and again. It saves our time and also reduces the complexity of coding.  

linking two html pages

Say, ur first html page is webpage.html and other is web.html.
If u want to go from webpage.html page to other page
Just write the following code-


<form action="web.html">
/* comments */
<input type="submit" value="SEND">
</form>

when u click on SEND button, u will be directed to web.html.

Friday, 4 April 2014

How to make your data secure in windows

Generally, we all put passwords on windows log on screen but is this helpful to make data secure from public.
       Of course, answer is no. Skipping to the point, windows log on screen password can be removed very easily in just less than 20 seconds. So, what should we do now to make our data private.
Follow steps:-
  1. At a command prompt, type syskey, and then press ENTER.
  2. In the Securing the Windows Account Database dialog box, note that the Encryption Enabled option is selected and is the only option available. When this option is selected, Windows will always encrypt the SAM database.
  3. Click Update.
  4. Click Password Startup if you want to require a password to start Windows. Use a complex password that contains a combination of upper case and lower case letters, numbers, and symbols. The startup password must be at least 12 characters long and can be up to 128 characters long.
          

Thursday, 3 April 2014

How to find local ip addresss of your pc.

1. Press windows logo button + r .
2. It will open Run command dialog box.
3. Type ipconfig and press enter.
4. In third or fourth row u will see ur local ip address.

How to delete temporary files in windows pc

1. Go to Start menu in the taskbar.
2. Go to search option.
3. Type %temp% and press enter.
4. You will see a folder 'Temp'.
5. Open it and delete all files.

Note:- One file cannot be deleted as it is the log file and used by explorer.exe. It means it is the file by help of which ur desktop is running.

Windows OS vs Android

Windows
1. More battery backup.
2. No file manager.
3. Mostly all apps are paid.
4. Browsing is fast.
5. Snap view is provided.
6. Requirements are less and works more and smoothly.
Android
1. Poor battery backup.
2. There are many file managers.
3. All apps are free of cost.
4. Slower than windows.
5. Menu is provided.
6. Requirements are more and does not run smoothly.

How to run a text vertically in html

How to run a text  vertically in html.
Here's the solution, you only have to paste the code given below as it is in the notepad

<html>
<head>Using marquee vertically</head>
<body>
<marquee direction="up" height="100%" ; align="right">
Your Text
</marquee>
</body>
</html>