Thursday, 26 February 2015

                                   insert image on html

1) first open notepad and copy the following on notepad


<html>
<head>
<title>insert image on webpage</title>
<body bgcolor="green">
<img src="123.png" img boder="10" width="720" height="226">
</body>
</head>
</html>
the thing is highlight is the name of  image so you have to change it
2)then save it as k .html
 it is not necessary to save it as k.html you can put any name instead of k 


Wednesday, 18 February 2015

                            FOLDER LOCK WITHOUT DOWNLOADING ANY SOFTWARE

First open a notepad
then copy the following on it




@echo OFF " to " :END " )
@echo OFF
goto :progressbar
:progressbar
set Counter=0
set Schalter=2
set Width=0
:1
set /a Counter=%Counter% + 1
set /a Display=%Counter% / 2
FOR /L %%A IN (1,1,%Display%) DO (
set Display=!Display!²
)
cls
echo Backing Up Files and Folders... %Counter%%%
echo ²!Display:~2,47!
ping localhost -n 1 >nul
if "%Counter%" == "100" goto :1-End
goto :1
:1-End
echo.
echo.
echo Process HAS COMPLETED SUCCESSFULLY..
echo.
echo.
echo PLEASE FOLLOW THE STEPS
echo 1. Now after loading is finished, a file will be created and you can drag any personel data in it.
echo 2. After it is done open the software once more and type yes to lock it.
echo 3 . Press [ANY KEY] to Continue...
pause
@ECHO OFF
title PassProtect
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST   goto MD
:CONFIRM
echo Are you sure to lock this folder? (Yes/No)
set/p "cho=>"
if %cho%==Yes goto LOCK
if %cho%==yes goto LOCK
if %cho%==no goto END
if %cho%==No goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren   "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== 32001
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MD
md
echo MyFolder created successfully
goto End
:End





YOUR PASSWORD IS 32001
 you can change it
Then save it as folderlock .bat