-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (34 loc) · 1.21 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<head>
<style>
h1{
color: blue;
text-align: center;
font-size: 80;
}
body{
background: url(http://d2fbmjy3x0sdua.cloudfront.net/cdn/farfuture/NfT3JA0c8BGLqtrTXzSOnI_uOmj4H7rZsEGje9ejJQc/mtime:1422549365/sites/default/files/Peregrine_Falcon_w02-44-013_l.jpg);
background-size:cover;
background-repeat:no-repeat;
}
</style></head>
<body>
<button onclick="ask()">click me and the world will end</button>
<h1>Peregrine falcon</h1>
the website is about Peregrine falcons. The fastest living animal.
<a href=https://en.wikipedia.org/wiki/Peregrine_falcon>all about Peregrine falcons wicki</a>
<br><img src="https://s-media-cache-ak0.pinimg.com/originals/2c/e3/0e/2ce30e25618486cd380f9f8c3cc297f5.jpg" width=400 height=400>
<br><iframe src="https://www.youtube.com/embed/legzXQlFNjs" width=400 height=350></iframe>
<p>copy write 2017 june</p>
<script>
function ask() {
alert("hello, do you like birds? If you don't stop reading NOW!");
var falcon=prompt("have you ever seen a Peregrine falcon?");
if (falcon =="yes") {
alert("wow seeing a Peregrine falcon is realy rare and they are beautiful animals ");
}
else{
alert("too bad, they look awsome!");
}
}
</script>
</body>