-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.26 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MPS Lab – Arizona State University</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 900px;
margin: 0 auto;
padding: 2rem;
color: #333;
}
h1 { color: #8C1D40; }
h2 { color: #5C6670; border-bottom: 2px solid #8C1D40; padding-bottom: 0.3rem; }
a { color: #8C1D40; }
.sponsors { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; margin-top: 1rem; }
.sponsors a img { height: 80px; }
</style>
</head>
<body>
<h1>Making Programming Simple (MPS) Lab</h1>
<p>Arizona State University</p>
<p>
Visit the full lab website:
<a href="https://labs.engineering.asu.edu/mps-lab/">labs.engineering.asu.edu/mps-lab/</a>
</p>
<p>
MPS Lab Publications:
<a href="https://labs.engineering.asu.edu/mps-lab/publications/">labs.engineering.asu.edu/mps-lab/publications/</a>
</p>
<h2>Sponsors</h2>
<div class="sponsors">
<a href="https://www.nasa.gov" target="_blank" rel="noopener noreferrer">
<img src="https://www.nasa.gov/wp-content/uploads/2023/03/nasa-logo-web-rgb.png" alt="NASA" />
</a>
</div>
</body>
</html>