-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage_2.html
More file actions
71 lines (67 loc) · 4.5 KB
/
Copy pathpage_2.html
File metadata and controls
71 lines (67 loc) · 4.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/html5reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Page 1</title>
</head>
<body>
<!-- This is the page for student basic needs - to achieve work/life balance -->
<div class="skip"><a href="#main">Skip to Main Content</a></div>
<header>
<nav>
<img src="images/UMSI_signature_vertical_informal_solidblue.jpg" alt="UMSI Logo">
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "page_1.html">Online Python Resources</a></li>
<li><a href = "page_2.html">Basic Student Needs</a></li>
<li><a href = "page_3.html">UMSI Tutoring Resources</a></li>
</ul>
</nav>
<h1>Basic Student Needs</h1>
</header>
<main class="page_2">
<div>
<h2>About</h2>
<p>We believe in fair and equitable access to food and other basic resources. Because when each of us has what we need, our community is stronger and our students are more successful.</p>
<p>This website has been created to share information about the resources available to students. It’s also a place to share data and research that will help the U-M community understand how important this work is for the entire campus.</p>
<p>This work is led by Student Life and supported by academic units and campus partners. Because more resources are being discovered and created on a regular basis, this website will be updated often. Please be patient as we grow this important resource.</p>
</div>
<div>
<h2>Resources By Category</h2>
<figure>
<img src="images/finance.jpg" alt="An image of dollar bills being counted by a person in the background.">
<figcaption><a href="https://basicneeds.studentlife.umich.edu/category/finance/">Finance</a><p>Financial resources to help with immediate and long-term needs, such as emergencies, college funding and employment.</p></figcaption>
</figure>
<figure>
<img src="images/food.jpg" alt="An image of food being cooked and tossed in a cooking pan.">
<figcaption><a href="https://basicneeds.studentlife.umich.edu/category/food/">Food</a> <p>Services to help students maintain healthy habits, find access to food, and seek assistance when struggling to buy food.</p></figcaption>
</figure>
<figure>
<img src="images/health_care.jpg" alt="An image of a stethoscope on a wood table to show a symbol of health care.">
<figcaption><a href="https://basicneeds.studentlife.umich.edu/category/health-care/">Health Care</a><p>Support for students seeking medical, dental or mental health treatment, including resources for securing health insurance and finding care providers.</p></figcaption>
</figure>
<figure>
<img src="images/critical.jpg" alt="An image of a student sitting in a study lounge on their computer looking stressed.">
<figcaption><a href="https://basicneeds.studentlife.umich.edu/category/critical-incident-support-conflict-management/">Critical Incident Support & Conflict Management</a><p>Support for students who are experiencing or have been impacted by a conflict or critical incident.</p></figcaption>
</figure>
<figure>
<img src="images/housing_transportation.jpg" alt="An image of the University of Michigan Central Campus Transit Center.">
<figcaption><a href="https://basicneeds.studentlife.umich.edu/category/housing-transportation/">Housing & Transportation</a><p>Campus and community resources for securing housing, accessing transportation, and seeking assistance for a variety of housing needs.</p></figcaption>
</figure>
</div>
<div>
<h2>Contact</h2>
</div>
</main>
<footer>
<p>University of Michigan School of Information <span id="year"></span><br/>
© MSI Academic Advising | <a href="https://sites.google.com/umich.edu/msiacademicadvising/student-support-resources">UMSI Academic Advising </a></p>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</footer>
</body>
</html>