-
Notifications
You must be signed in to change notification settings - Fork 566
/
fun3d.html
50 lines (48 loc) · 1.1 KB
/
fun3d.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
box-sizing: border-box;
color: #fff;
background-color: #333;
position: relative;
text-align: center;
}
.intro {
padding-top: 1.5rem;
}
.octopus {
width: 100%;
height: 100vh;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
</style>
<title>3D octopus page</title>
</head>
<body>
<div class="intro">
<h1>My first open source contribution</h1>
<p>Please give it a few seconds to load the octopus.</p>
</div>
<div class="octopus">
<iframe
src="https://my.spline.design/octopus-56e6ce8610a3259e5147b23b4c79aeb6/"
frameborder="0"
width="100%"
height="100%"
></iframe>
</div>
</body>
</html>