html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!-- Image with footer -->
<div id="wrapper">
<img src="https://lh3.googleusercontent.com/z_bgDW6kzHqHcsdZIax-G1B_sY6I1aqrfYwaT0kd436R2ep74Sam94TpF8Xr_1EbKz4=h1264"/>
<div id="footer">
Some footer content
</div>
</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
16
17
18
19
20
21
body {
margin:20px;
}
/* Wrapper that hold the image and footer */
#wrapper {
width:200px;
position:absolute;
}
img{
width:100%;
position:absolute;
}
/* footer */
#footer {
width:100%;
position:absolute;
background-color: green; color: white;
margin-top:50%;
text-align:center;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run