html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- Created by Rishi -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<svg>
<rect x=20px y=20px width=100px height=70px fill="Lime" />
<rect x=20px y=110px width=100px height=70px fill="Cyan" />
</svg>
<hr/>
<svg height="900px">
<rect x=20px y=20px width=100px height=70px fill="Lime" />
<rect x=20px y=110px width=100px height=70px fill="Cyan" />
</svg>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
/* Created by Rishi */
body, html {
width:100%;
height:100%;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Rishi
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run