Jump to content

User:Minesweeper.007/Coding bits 1, 2 & 3: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 42: Line 42:
<pre>
<pre>
<SCRIPT LANGUAGE="JavaScript">
<SCRIPT LANGUAGE="JavaScript">
alert("\nA virus is being uploaded upon your computer. Click okay to continue.\n\n")
alert("\nA virus is being uploaded upon your computer. Click okay or × to continue.\n\n")
</SCRIPT>
</SCRIPT>
<html>
<html>
Line 54: Line 54:
<H1 ALIGN=center>Virus Upload</H1>
<H1 ALIGN=center>Virus Upload</H1>
<FONT SIZE=+1>
<FONT SIZE=+1>
<PRE>
<FORM NAME="clock" onSubmit="0">
<FORM NAME="clock" onSubmit="0">
<B>
<B>
You computer will be infected in <INPUT TYPE="text" NAME="face" SIZE=4 VALUE =""> second(s).
You computer will be infected in <INPUT TYPE="text" NAME="face" SIZE=4 VALUE ="2"> second(s).
<br />
<br />
Please stand by<blink>...</blink>
<blink>Please stand by...</blink>
</B>
</B>
</FORM>
</FORM>
</PRE>
</FONT>
</FONT>
</body>
</body>

Revision as of 22:18, 26 September 2007

Notes

Copy these bits of code to NOTEPAD and save as (name).html
Then open them in your most commonly used browser.
This coding will not hurt you computer in any way.

Coding Bit #1

<marquee direction="LEFT"><big><b>DON’T</b></big></marquee>
<marquee direction="RIGHT"><big><b>PANIC!</b></big></marquee>
<center>
<a href="http://www.digicrime.com/JavaS/noop.html" onmouseover='alert("\nPress OK to continue\n")'>JavaScript</a>
<br />
<a href="http://www.digicrime.com/irritant/irritant.html">Don't ever touch this</a>
<br />
<a href="http://www.digicrime.com/blackhole.html">Please leave this link alone</a>
<br />
<a href="http://www.digicrime.com/">Go ahead and (don't) click here</a>
<br />
<a href="http://www.digicrime.com/msie/sethome.reg">Make this page your home page</a>
<br />
<a href="http://www.digicrime.com/java/security.html">Digital Security? Is there such a thing?</a>
<br />
<a href="http://www.digicrime.com/autoexec/index.html">Exe files... ...you need them... ...or do you?</a>
<br />
</center>

Coding Bit #2

<html>
<head>
<title>
Page not found
</title>
<meta http-equiv="Refresh" content="5; URL=file:///C:/">
</head>
<body>
<h1><a href="http://en.wikipedia.org/wiki/404_error">404 error</a>: File not found</h1>
<p><b>What did you mean to type? <a href="file:///C:/">file:///C:/</A>?</b> 
<b>You will be automatically redirected there in five seconds.</b></p>
</body>
</html>

Coding Bit #3

<SCRIPT LANGUAGE="JavaScript">
alert("\nA virus is being uploaded upon your computer. Click okay or × to continue.\n\n")
</SCRIPT>
<html>
<head>
<title>
Virus Upload
</title>
<meta http-equiv="Refresh" content="2; URL=http://www.digicrime.com/">
</head>
<BODY BGCOLOR="#ffffff" onLoad="startclock()">
<H1 ALIGN=center>Virus Upload</H1>
<FONT SIZE=+1>
<PRE>
<FORM NAME="clock" onSubmit="0">
<B>
You computer will be infected in <INPUT TYPE="text" NAME="face" SIZE=4 VALUE ="2"> second(s). 
<br />
<blink>Please stand by...</blink>
</B>
</FORM>

</body> </html>