-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrainbow.html
More file actions
23 lines (23 loc) · 754 Bytes
/
rainbow.html
File metadata and controls
23 lines (23 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<body>
<style>
html {
padding-top: 4px;
padding-top: 100px;
margin-top: 50px;
margin-left: 300px;
}
</style>
<svg width ="1000" height="400"
style="background-color: rgb(0, 238, 255);">
<circle cx="500" cy="450" r="450" fill="red"/>
<circle cx="500" cy="450" r="400" fill="orange"/>
<circle cx="500" cy="450" r="350" fill="yellow"/>
<circle cx="500" cy="450" r="300" fill="green"/>
<circle cx="500" cy="450" r="250" fill="blue"/>
<circle cx="500" cy="450" r="200" fill="indigo"/>
<circle cx="500" cy="450" r="150" fill="violet"/>
</svg>
</body>
</html>