how to make a html prank virus

Solutions on MaxInterview for how to make a html prank virus by the best coders in the world

showing results for - "how to make a html prank virus"
Roberta
11 Nov 2020
1COPY THIS AND SAVE TO NOTEPAD AS "fakevirus.htm"
2<!DOCTYPE html>
3<html>
4<body>
5<img style = "width: 8%; ; " src="https://www.w3schools.com/images/stop.gif"  alt=""  />
6<h1> THERE IS A VIRUS DETECTED IN YOUR COMPUTER <h1/>
7<p> get fakeavast.exe to get rid of this virus <p>
8<script>
9function openWin()
10{
11myWindow=window.open("","","width=200,height=100");
12myWindow.document.write("<p>LOL GET TROLLED</p>");
13}
14
15</script>
16
17</body>
18</html>