-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (33 loc) · 973 Bytes
/
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
<!DOCTYPE html>
<html>
<!-- This is the HEADER section.......................... -->
<head>
<!-- This statement tells browsers how to understand our characters -->
<meta charset="utf-8">
<!-- This statement tells browsers to redirect to next webpage after 6 seconds -->
<meta http-equiv="refresh" content="3; url=Assignment1/webpages/mission.html" />
<!-- This is our title. It is mandatory. -->
<title> Liverpool FC </title>
<!-- This body field in the style tag formatts the body of the webpage -->
<style>
body {
background-image: url("Assignment1/images/attempt1.jpg");
background-repeat: no-repeat;
background-size: 100% 100vh;
background-color: white;
position: relative;
}
</style>
<script>
function myFunction(){
setTimeout(function(){
}, 5000);
}
</script>
</head>
<!-- This is the body section -->
<body id ="index" onload="myFunction()">
<!-- Close body of webpage -->
</body>
<!-- Close html-->
</html>