-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (91 loc) · 2.78 KB
/
index.html
File metadata and controls
106 lines (91 loc) · 2.78 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<html>
<head>
<style>
/* Body central style */
body {
background-image: url("assets/paper.jpg");
background-repeat: no-repeat;
background-size: cover;
text-align: center;
justify-content: center;
}
/* Main heading style */
h1 {
background-color: yellow;
color: red;
/*Choose your own font: Comic Sans MS, Arial, verdana, Helvetica, Times, Courier*/
font-family: "Impact", "Arial", "Times New Roman";
font-size: 100px;
}
/* Image style */
img {
border: 2px solid black;
}
/* Sub heading styles */
h2 {
/* Change the number to change the size of the header text. */
font-family: "Times", "Arial", "Times New Roman";
font-size: 40px;
}
h3 {
font-family: "Verdana", "Times", "Arial";
font-size: 30px;
}
/* List styling */
li {
font-family: "Verdana", "Times", "Arial";
font-size: 20px;
list-style-position: inside;
}
/* Button styling */
button {
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
font-weight: 400;
font-size: 30px;
background-color: red;
color: white;
border-radius: 10px;
padding: 10px;
}
</style>
</head>
<body>
<h1>WANTED</h1>
<!-- Find an image from the Image Gallery above, or use your own image link -->
<img src="assets/dog.jpg" width="500px" alt="My Dog" />
<!-- Who is wanted? -->
<h2>Bella</h2>
<!-- What are they wanted for? -->
<h3>For Reckless, Inhuman Crimes:</h3>
<ul>
<li>ATE MY LIPSTICK</li>
<li>ATE MY HOMEWORK (AND NOBODY BELIEVED ME)</li>
<li>TOO CUTE (∩ಠᗜಠ)⊃━☆゚.*</li>
<li>RAN AWAY WITH MY SOCKS</li>
</ul>
<br /><br />
<!-- Partners in crime? -->
<h3>Known Accomplices</h3>
<!-- Brother -->
<img src="assets/baby.jpg" width="400px" alt="William's picture" />
<h3>My baby brother William</h3>
<!-- Cat -->
<img src="assets/cat.jpg" width="400px" alt="Jack's picture" />
<h3>My Cat Jack</h3>
<!-- Sister -->
<img src="assets/vicky.gif" width="400px" alt="Vicky's picture" />
<h3>My Sister Vicky</h3>
<!-- How do want them captured? -->
<h2>Capture Alive Only</h2>
<!-- What is the reward? -->
<h2>$10,000,000,000</h2>
<!-- Report them -->
<button onclick="reportalert()">Report Them</button>
<!-- Button Click -->
<script>
function reportalert() {
alert("Thanks, but I think I'm forgiving them this time round!");
}
</script>
</body>
</html>