html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!-- footer -->
<div id="footer">
<p>
Some footer content
</p>
</div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
body {
background-image:url("https://lh3.googleusercontent.com/z_bgDW6kzHqHcsdZIax-G1B_sY6I1aqrfYwaT0kd436R2ep74Sam94TpF8Xr_1EbKz4=h1264");
background-repeat:no-repeat;
background-size:cover;
margin:0px;
}
/* footer */
#footer {
width:100%; height:15%; top:85%;
position:absolute;
background-color: green;
text-align:center;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run