html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>U.S ARMY sign up page</title>
</head>
<body background="https://i.pinimg.com/originals/56/f8/a1/56f8a113023e14c3595f49de4d09fdd7.jpg">
<!-- h1 tag -->
<center>
<h1>
<b>
<i>
If you want to join the U.S.ARMY click the button
</i>
</b>
</h1>
</center>
<!-- button to go join the Military -->
<center>
<a href="https://www.usa.gov/join-military" target="_blank">
<button class="button">If you want to join the Military click here?</button>
</a>
</center>
<!-- U.S.ARMY img -->
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* body tag */
body {
background-size: 1280px 800px;
text-transform: uppercase;
}
/* h1 tag */
h1 {
color: white;
text-shadow: black 5px 6px 5px;
}
/* Button that goes To The Military Web Page*/
button{
color: blue;
font-size: 15px;
text-transform: uppercase;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
alert("This was Made by ANONYMOUS©. Any Copy right of This Code Without The Devloper's Name Will be in a lot of Trouble.");
alert("YOU HAVE BEEN WARNED.");
alert("Pls leave a +1")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run