html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<div id="header"><header align="center">Drummers matter</header></div>
<body>
<div id="first"><p>welcome to Drummers Matter where you can find all things <em>drum.</em></p></div>
<iframe width="350"height="315" src="https://www.youtube.com/embed/YShQzigt5mA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div class="thumbnail"><p>amazing snare chops</p></div>
<div class="channel">
<a href="https://code.sololearn.com/W1NZG2096QoM/?ref=app">click for page 2</a>
</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
#header{
font-size: 200%;
text-shadow: 3px 2px 0;
animation: drummer 1s ease-in infinite;
background-color: black;
}
@keyframes drummer{
0%{color: yellow; }
20%{color: green; }
40%{color: blue;}
80%{color: yellow;}
100%{color: green;}
}
#first{
color: red;
font-size:120%;
background-color: black;
}
#first em{
color: black;
background-color: white;
font-size: 150%;
animation: drum 3s
}
}
.thumbnail{
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run