-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
53 lines (51 loc) · 1.11 KB
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
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Interactive 3D Model</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
background-image: url('resources/Visualization.webp');
background-size: 40%;
background-position: top left;
background-repeat: no-repeat;
}
.button-container {
display: flex;
flex-direction: column;
align-items: center;
width: 300px;
}
.button-container button {
width: 100%;
padding: 20px 40px;
font-size: 24px;
margin-bottom: 10px;
background-color: #141414;
color: #fafcff;
border: none;
border-radius: 50px;
cursor: pointer;
transition: background-color 0.3s;
}
.button-container button:hover {
background-color: #87a548;
}
</style>
</head>
<body>
<div class="button-container">
<button onclick="open3DPage()">3D Model</button>
</div>
<script>
function open3DPage() {
window.location.href = "3d.html";
}
</script>
</body>
</html>