-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (71 loc) · 2.82 KB
/
index.html
File metadata and controls
73 lines (71 loc) · 2.82 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
<!DOCTYPE html>
<!-- This file is part of Mobile Technologies for Research: Illustrations -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Refresh" content="3; url='https://github.com/DepressionCenter/mobile-tech-illustrations'" />
<style>
body {
font-family: 'Helvetica', sans-serif;
line-height: 1.6;
background-color: #f3f3f3; /* University of Michigan off-white */
color: #00274c; /* University of Michigan dark blue */
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
overflow: hidden;
}
.umich-logo {
height: 50px;
margin-top: 20px;
}
h1 {
color: #ffcb05; /* University of Michigan maize */
}
a {
color: #00274c; /* University of Michigan dark blue */
}
p {
margin-bottom: 20px;
}
.footer {
font-size: 0.8em;
}
.redirection-notice {
margin-top: 50px;
background-color: #e5e5e5; /* Light grey background for emphasis */
padding: 20px;
border-left: 4px solid #00274c; /* University of Michigan dark blue */
}
</style>
<!-- Page Title -->
<title>Mobile Technologies for Research: Illustrations - Sample Output</title>
<!-- Redirection Script -->
<script type="text/javascript">
window.setTimeout(()=>{ window.location.href="https://github.com/DepressionCenter/mobile-tech-illustrations"; }, 3500);
</script>
</head>
<body>
<div class="container">
<img src="https://github.com/DepressionCenter/.github/raw/main/images/EFDCLogo_375w.png" alt="U-M Eisenberg Family Depression Center Logo" class="umich-logo">
<!-- Main Content -->
<h1>Mobile Technologies for Research: Illustrations - Sample Output</h1>
<p>This site contains samples for the <a href="https://github.com/DepressionCenter/mobile-tech-illustrations">Mobile Technologies for Research: Illustrations project.</a></p>
<p> </p>
<div class="redirection-notice">
<p>If you are not automatically redirected, please visit the project page for usage instructions at: <a href="https://github.com/DepressionCenter/EMA-CleanR">https://github.com/DepressionCenter/mobile-tech-illustrations</a>.</p>
</div>
<p> </p>
<!-- Footer -->
<div class="footer">
<strong>Eisenberg Family Depression Center</strong><br>
<a href="https://depressioncenter.org">https://depressioncenter.org</a><br>
<small>© 2023-2026 Regents of the University of Michigan</small>
</div>
</div>
</body>
</html>