-
Notifications
You must be signed in to change notification settings - Fork 0
/
error404.html
42 lines (42 loc) · 1.54 KB
/
error404.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
<html>
<head>
<meta charset="utf-8">
<title>Error 404</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style/style.css">
<link rel="icon" href="assets/favicons/error.svg" sizes="any" type="image/svg+xml">
</head>
<body class="body_error">
<div class="error_script">
Error<br>
404
</div>
<div class="error_text">
<h3 class="error_parag">
Página não encontrada :( <br>
Este website ainda se encontra em desenvolvimento... <br>
Clique para volta à página <a href="index.html" style="text-decoration:none; -webkit-text-stroke-width: 0.5px;
-webkit-text-stroke-color: rgb(220,220,220);">"Sobre"</a>.
</h3>
</div>
<div class="error_sign">
<canvas id="error_3d_sign"></canvas>
</div>
<!--3D SCRIPT LOADING-->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"@splinetool/runtime": "https://unpkg.com/@splinetool/runtime@0.9.154/build/runtime.js"
}
}
</script>
<script type="module">
import { Application } from '@splinetool/runtime';
//404
const canvas_error_sign = document.getElementById('error_3d_sign');
const app_error_sign = new Application(canvas_error_sign);
app_error_sign.load('https://prod.spline.design/oknR1dk4sQQvhD1S/scene.splinecode');
</script>
</body>
</html>