html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Rancho&effect=shadow-multiple">
</head>
<body>
<h2 id="h1" class="font-effect-shadow-multiple">#1 in South Africa</h2>
<img id="i1" src="https://www.ggcprojekt.co.za/gif/saFlag.gif" alt="saFlag gif"/>
<img id="i2" src="https://www.ggcprojekt.co.za/gif/charizard.gif" alt="charizard gif"/>
<h2 id="h2" class="font-effect-shadow-multiple">@Gavin Christians</h2>
</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
22
23
24
25
26
27
28
body {
position:relative;
}
h2{
font-size:30px;
}
#h1 {
position:absolute;
top:35px;
left:50px;
z-index:2;
}
#h2 {
position:absolute;
top:390px;
left:50px;
z-index:2;
}
img {
position:absolute;
z-index:1;
}
#i1 {
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run