-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
152 lines (138 loc) · 3.95 KB
/
about.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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>
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>
<style>
table {
width: 100%;
border-collapse: collapse;
text-align: center;
font-family: Arial, sans-serif;
margin: 20px auto;
}
th, td {
border: 1px solid #ccc;
padding: 8px;
background-color: #f2f2f2;
color: #000;
}
th {
background-color: #ddd;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<video autoplay loop muted>
<source src="background.mp4" type="video/mp4">
</video>
<header>
<nav>
<a href="index.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>#24 Team: Nutrition Factory</h1>
<p>We are a young and energetic team, and in this project, we used html5, css and JavaScript to complete the design of our program. We designed the program to provide health assessments for the elderly, and to develop a reasonable diet plan and exercise plan for users through data analysis.</p>
<p>Team members information:</p>
<table>
<tr>
<th>Name</th>
<th>Major</th>
<th>Year</th>
<th>email</th>
<th>Introduction</th>
</tr>
<tr>
<td>Xining Feng</td>
<td>CSE-Software engineering</td>
<td> Junior</td>
<td>Feng.1246@osu.edu</td>
<td>I'm Xining Feng. I'm a junior CSE major going into software engineering. I have some experience in C, Java, and HTML.</td>
</tr>
<tr>
<td>Jun, Xie</td>
<td>ECE</td>
<td> Junior</td>
<td>Xie.1301@osu.edu</td>
<td>JunXie, a junior ECE major at The Ohio State University, He wants to help people live healthier lives through technology.</td>
</tr>
<tr>
<td>Ye, Liu</td>
<td>CSE-System</td>
<td> Junior</td>
<td>Liu.9756@osu.edu</td>
<td>Ye Liu, from OSU, tried to implement some tools to ensure people's health through JavaScript</td>
</tr>
<tr>
<!-- 添加其他日期的数据 -->
<table>
</body>
</html>