html
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
<!DOCTYPE html>
<html>
<head>
<title>Hover Menus</title>
<style>
* {
margin: 0px;
text-align: center;
font-family: verdana;
}
@keyframes rainbowText {
0% {color: red;}
20% {color: orange;}
40% {color: yellow;}
60% {color: green;}
80% {color: blue;}
100% {color: purple;}
}
h1 {
color: thistle;
background-color: black;
animation: rainbowText 3s infinite;
}
#topnav {
display: grid;
grid-template: 30px / 1fr 1fr;
}
#dropbtn1 {
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run