-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRetrob.html
More file actions
28 lines (26 loc) · 760 Bytes
/
Copy pathRetrob.html
File metadata and controls
28 lines (26 loc) · 760 Bytes
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 lang="en">
<head>
<title>Retro bowl</title>
<style>
body{
margin: 0; /* Remove default margin */
}
iframe{
display: block; /* iframes are inline by default */
height: 100vh; /* Set height to 100% of the viewport height */
width: 100vw; /* Set width to 100% of the viewport width */
border: none; /* Remove default border */
background: lightyellow; /* Just for styling */
}
</style>
</head>
<body>
<iframe src="https://banagajdueod.netlify.app/games/retrobowl/"></iframe>
<style>
body {
background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
}
</style>
</body>
</html>