-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (109 loc) · 4.86 KB
/
index.html
File metadata and controls
118 lines (109 loc) · 4.86 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-Frame-Options" content="DENY">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta http-equiv="X-XSS-Protection" content="1; mode=block">
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate, private">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; object-src 'none'; base-uri 'self'; form-action 'self'">
<script>if (self !== top) { top.location = self.location; }</script>
<title>Sports Engineering Lab</title>
<link rel="shortcut icon" href="assets/logo/SEL_favicon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/logo/SEL_favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/logo/SEL_favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/logo/SEL_favicon.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/carousel.css">
<script src="js/carousel.js" defer></script>
</head>
<body>
<div class="top-bar">
<div class="top-bar__container">
<div class="top-bar__links">
<a href="https://www.snu.ac.kr/">Seoul National University</a>
<a href="https://sports.snu.ac.kr/">Department of Physical Education</a>
</div>
</div>
</div>
<div class="header-container">
<h1>
<a href="/">
<img src="assets/logo/SEL_logo.png" alt="Sports Engineering Lab">
</a>
</h1>
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<nav class="main-nav">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/people/">People</a></li>
<li><a href="/publications/">Publications</a></li>
<li><a href="/media_coverage/">Media Coverage</a></li>
<li><a href="/activities/">Activities</a></li>
</ul>
</nav>
</div>
<div class="overlay"></div>
<div class="carousel-container" style="max-width: 100%; margin: 0;">
<div class="carousel">
<div class="carousel-slide">
<img src="assets/home_images/main1_merged.jpg" alt="Main Image 1">
</div>
<div class="carousel-slide">
<img src="assets/home_images/main2_merged.jpg" alt="Main Image 2">
</div>
<div class="carousel-slide">
<img src="assets/home_images/main3_merged.jpg" alt="Main Image 3">
</div>
<div class="carousel-slide">
<img src="assets/home_images/main4_merged.jpg" alt="Main Image 4">
</div>
</div>
</div>
<div class="mission-statement">
<h2>We are dedicated to</h2>
<ul>
<li>Enhancing sports performance</li>
<li>Improving human motor function</li>
<li>Understanding human motor control</li>
<li>Quantifying human motor perfomance</li>
</ul>
<div class="professor-quote">
<blockquote>
"We have an instrumented treadmill, force platforms, multiple high-speed motion capture cameras,
EMG sensors, a wearable metabolic system, etc. However, the most valuable assets to our lab are
the students. They are the 'Avengers' in the field of sports engineering, who have strong passion
and expertise in either kinesiology, engineering or both."
</blockquote>
<cite>- Prof. Ahn</cite>
</div>
</div>
<footer class="footer">
<div class="footer__container">
<div class="footer__section">
<h3>Address</h3>
<p>Sports Engineering Lab, Room 301 Building 71</p>
<p>Seoul National University, 1 Gwanak-ro, Gwanak-gu</p>
<p>Seoul, 08826, Republic of Korea</p>
</div>
<div class="footer__section">
<h3>Contact</h3>
<p>Email: <a href="mailto:ahnjooeun@snu.ac.kr">ahnjooeun@snu.ac.kr</a></p>
<p>Tel: +82-2-880-7785</p>
</div>
</div>
<div class="footer__bottom">
<p>© <script>document.write(new Date().getFullYear())</script> Sports Engineering Lab, Seoul National University. All rights reserved.</p>
</div>
</footer>
<a href="#" class="back-to-top" aria-label="Back to top"></a>
<script src="js/back-to-top.js"></script>
<script src="js/main.js"></script>
</body>
</html>