-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (64 loc) · 3.14 KB
/
index.html
File metadata and controls
68 lines (64 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MCCWRS</title>
<link rel="icon" href="./static/MCCWRS_Thumb.png" type="image/png"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script type="text/javascript" src="./static/JavascriptFunctions.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<script>MainNavBar();</script>
<br>
<!-- /* Page Title Block */-->
<div class="mb-5">
<img src="./static/phoenix.jpg" alt="Phoenix" class="card-img rounded-pill img-fluid border border-5">
</div>
<!-- /* College Information Block */-->
<div class="container-xxl mb-5">
<div class="row">
<div class="col d-flex align-items-stretch">
<div class="card text-center">
<h5 class="card-title ">Facility Educational Services</h5>
<p class="card-text">Check out the educational section to see all of the classes and college courses you can compleate while you are a resident of MCC!</p>
</div>
</div>
<div class="col">
<div class="card">
<img src="./static/turtle.jpg" width="700" alt="Educational Photo">
<div class="card-body">
<a href="education.html" class="btn btn-primary">Educational Page</a>
</div>
</div>
</div>
</div>
</div>
<!-- /*Facility Information Block */-->
<div class="container-xxl mb-5">
<div class="row">
<div class="col">
<div class="card">
<img src="./static/inner_self.jpg" alt="SMWRC Logo" width="700">
<div class="card-body">
<a href="HousingUnit.html" class="btn btn-primary">Housing Information</a>
</div>
</div>
</div>
<div class="col d-flex align-items-stretch ">
<div class="card text-center">
<h5 class="card-title ">Resident Facility Information</h5>
<p class="card-text">Please Click on your current housing facility for more information spacificly pertaining to that facility </p>
</div>
</div>
</div>
</div>
<!--Page Footer-->
<script>FooterNav()</script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
</body>
</html>