-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (77 loc) · 2.5 KB
/
index.html
File metadata and controls
88 lines (77 loc) · 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Explorers</title>
<style>
body {
margin: 0;
background-color: black;
color: white;
font-family: Arial, sans-serif;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 20px;
background: linear-gradient(to right, #ffffff, #e0e0e0);
color: black;
}
.logo img {
height: 65px;
}
header h1 {
font-size: 36px; /* Increased font size for title */
margin-left: -451px;
color: black;
margin-top: 8px;
}
.features {
display: flex;
gap: 15px;
}
.features button {
background-color: #bcdae6;
color: rgb(0, 0, 0);
border: none;
padding: 10px 30px; /* Increased padding */
cursor: pointer;
border-radius: 20px;
font-size: 16px; /* Increased font size */
transition: background-color 0.3s ease;
}
.features button:hover {
background-color: #80e5dd;
}
</style>
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.161/build/three.module.js",
"jsm/": "https://cdn.jsdelivr.net/npm/three@0.161/examples/jsm/"
}
}
</script>
</head>
<body>
<header>
<div class="logo">
<img src="logo1.png" alt="Logo">
</div>
<h1>Explorers</h1>
<div class="features">
<button id="gameButton">Game</button>
<button id="paceButton">About PACE</button>
<!--
Description: This file contains the HTML structure for the webpage.
The button element with the label "Junior Scientist" is used to trigger an action or navigate to a specific section related to junior scientists.
<button>Junior Scientist</button>-->
<button id="classButton">PACE Classroom</button>
</div>
</header>
<script type="module" src="index.js"></script>
</body>
</html>