-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbigIdea.html
More file actions
109 lines (93 loc) · 4.03 KB
/
bigIdea.html
File metadata and controls
109 lines (93 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accessibility Features on Campus</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container header">
<h1 class="service-name">Includify</h1>
<div class="buttons">
<button>Features</button>
<button>Buildings</button>
<button>Map</button>
</div>
<input type="text" placeholder="Search..." class="search-box">
</div>
</header>
<section class="hero">
<div class="container">
<h2>Find Accessibility Features Across Campus</h2>
<p>Helping students find accessible bathrooms, elevators, and more!</p>
</div>
</section>
<section class="out-of-order">
<div class="container">
<h3>Accessibility Services Currently Out of Order:</h3>
<div class="out-of-order-grid" id="out-of-order-grid">
<!-- This will be populated dynamically via JavaScript -->
<p>Reid Hall Elevator</p>
</div>
</div>
</section>
<section class="features">
<div class="container">
<h3>Accessibility Features</h3>
<div class="feature-grid">
<div class="feature-card">
<h4>Accessible Bathrooms</h4>
<img src="images/bathroom.jpg" alt="Accessible Bathroom" class="feature-image">
<p>Find the nearest accessible bathrooms across campus.</p>
</div>
<div class="feature-card">
<h4>Accessible Elevators</h4>
<img src="images/elevator.jpg" alt="Accessible Elevator" class="feature-image">
<p>Locate elevators equipped with accessibility features for easy access.</p>
</div>
<div class="feature-card">
<h4>Wheelchair Lifts</h4>
<img src="images/wheelchair.jpg" alt="Wheelchair Lifts" class="feature-image">
<p>Locate Chair Lifts for Traversing Building Floors.</p>
</div>
<div class="feature-card">
<h4>Service Animal Relief Areas</h4>
<img src="images/serviceDog.jpg" alt="Service Animal Relief Areas" class="feature-image">
<p>Locate the nearest appropriate places to take care of your furry friends needs.</p>
</div>
<div class="feature-card">
<h4>Low-Stimulaton Areas</h4>
<img src="images/lowStim.jpg" alt="Low-Stimulaton Areas" class="feature-image">
<p>Locate quiet areas dedicated to low stimulation.</p>
</div>
<div class="feature-card">
<h4>Buildings with ADA Parking</h4>
<img src="images/parking.jpg" alt="ADA Parking" class="feature-image">
<p>Locate Buildings Across Campus with ADA Parking.</p>
</div>
</div>
</div>
</section>
<section class="contact">
<div class="container">
<h3>Contact Us</h3>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" class="input-box">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" class="input-box">
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Your message..." class="input-box"></textarea>
<button type="submit" class="submit-btn">Submit</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Includify. All rights reserved.</p>
</div>
</footer>
</body>
</html>