-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplore.html
106 lines (97 loc) · 3.64 KB
/
explore.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
nav {
display: flex;
justify-content: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 20px;
font-weight: bold;
}
.content {
text-align: center;
padding: 50px;
}
.research-content {
padding: 50px;
text-align: left;
}
</style>
<style>
.scrollable {
height: 735px; /* 设置滚动区域的高度 */
overflow-y: auto; /* 启用垂直滚动条 */
border: 1px solid #ccc; /* 可选:添加边框样式 */
}
</style>
<style>
video {
position: fixed;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
z-index: -1;
}
.content {
position: relative;
z-index: 1;
text-align: center;
padding: 50px;
}
h1 {
color: #fff;
font-size: 36px;
}
p {
color: #fff;
font-size: 18px;
}
</style>
</head>
<body>
<div class="scrollable">
<video autoplay loop muted>
<source src="background.mp4" type="video/mp4">
</video>
<header>
<nav>
<a href="HOME.html">HOME</a>
<a href="data.html">PERSONAL DATA</a>
<a href="about.html">ABOUT US</a>
<a href="ability.html">ABILITY DIMENSION</a>
<a href="explore.html">EXPLORE</a>
</nav>
</header>
<h1>ABOUT THE FUTURE</h1>
<p>In our future plans, we are aiming to enhance our software by integrating a wide range of external hardware devices, such as heart rate monitors, blood pressure monitors, and various other health measurement instruments. The objective is to create a comprehensive ecosystem that empowers users to monitor and manage their health more effectively.</p>
<p>These additional hardware devices will work in synergy with our existing software, forming a seamless integration to provide users with a holistic health monitoring experience. Users will be able to easily connect and synchronize these devices with our platform, allowing for real-time data collection and analysis. This data can then be presented in user-friendly interfaces, enabling individuals to gain valuable insights into their well-being and make informed decisions about their health and fitness routines.</p>
<p>We are committed to making health and fitness more accessible and personalized by leveraging the latest advancements in technology, and this integration of hardware and software is a significant step towards achieving that goal. Our vision is to empower individuals to take charge of their health and well-being through a connected and user-friendly ecosystem of devices and software.</p>
<img src="figure2.png" alt="DESCRIPTION_OF_IMAGE" width="400px" height="400px">
<img src="figure.png" alt="DESCRIPTION_OF_IMAGE" width="400px" height="400px">
</div>
</body>
</html>