-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (153 loc) · 6.33 KB
/
index.html
File metadata and controls
161 lines (153 loc) · 6.33 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Basketball for People with Disabilities</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
background: linear-gradient(to right, #f0f8ff, #e0ffff);
color: #333;
margin: 0;
padding: 0;
}
header {
background: linear-gradient(to right, #4CAF50, #3b8d40);
color: white;
text-align: center;
padding: 2em 0;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.container {
width: 90%;
margin: auto;
overflow: hidden;
}
.button {
display: inline-block;
padding: 12px 24px;
font-size: 1em;
color: white;
background-color: #4CAF50;
text-align: center;
border-radius: 25px;
margin: 15px;
text-decoration: none;
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.button:hover {
background-color: #45a049;
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.info-section {
background: rgba(255, 255, 255, 0.8);
padding: 30px;
margin: 25px 0;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.info-section img {
max-width: 100%;
border-radius: 15px;
transition: transform 0.3s;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.info-section img:hover {
transform: scale(1.05);
}
.info-section h2 {
font-size: 2em;
margin-bottom: 10px;
}
.info-section p {
font-size: 1.2em;
line-height: 1.8;
}
.footer {
background: linear-gradient(to right, #4CAF50, #3b8d40);
color: white;
text-align: center;
padding: 1em 0;
margin-top: 20px;
box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
}
.symbol {
font-size: 2.5em;
color: #4CAF50;
padding: 15px;
}
.flex-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.flex-container > div {
flex: 1;
min-width: 250px;
margin: 15px;
padding: 20px;
border: 2px solid #4CAF50;
border-radius: 20px;
background: rgba(255, 255, 255, 0.7);
}
</style>
</head>
<body>
<header>
<h1>Basketball for People with Disabilities</h1>
</header>
<div class="container">
<div class="info-section">
<h2>Overview</h2>
<p>Basketball is a fantastic sport that can help people with various disabilities improve their physical fitness, build social connections, and boost their positive energy. Here are five disabilities where basketball can be particularly beneficial.</p>
</div>
<div class="flex-container">
<div class="info-section">
<h2>1. Wheelchair Users</h2>
<p>Wheelchair basketball offers an excellent opportunity for people in wheelchairs to improve their muscle strength and endurance. It also promotes teamwork and social interaction.</p>
<img src="https://via.placeholder.com/300x200.png?text=Wheelchair+Basketball" alt="Wheelchair Basketball">
<div class="symbol">🏀</div>
<a href="wheelchair_users.html" class="button">Learn More</a>
</div>
<div class="info-section">
<h2>2. Visual Impairments</h2>
<p>Basketball can help people with visual impairments improve their spatial orientation and motor skills. It also fosters confidence and independence.</p>
<img src="https://via.placeholder.com/300x200.png?text=Visual+Impairments" alt="Basketball for Visual Impairments">
<div class="symbol">👀</div>
<a href="visual_impairments.html" class="button">Learn More</a>
</div>
<div class="info-section">
<h2>3. Hearing Impairments</h2>
<p>For people with hearing impairments, basketball can help improve physical fitness and enhance communication skills through nonverbal signals and teamwork.</p>
<img src="https://via.placeholder.com/300x200.png?text=Hearing+Impairments" alt="Basketball for Hearing Impairments">
<div class="symbol">👂</div>
<a href="hearing_impairments.html" class="button">Learn More</a>
</div>
<div class="info-section">
<h2>4. Intellectual Disabilities</h2>
<p>People with intellectual disabilities benefit from the structure and social aspects of basketball. It helps promote cognitive skills and self-confidence.</p>
<img src="https://via.placeholder.com/300x200.png?text=Intellectual+Disabilities" alt="Basketball for Intellectual Disabilities">
<div class="symbol">🧠</div>
<a href="intellectual_disabilities.html" class="button">Learn More</a>
</div>
<div class="info-section">
<h2>5. Autism</h2>
<p>Basketball can help people with autism improve their motor skills and promote social interactions in a structured and supportive environment.</p>
<img src="https://via.placeholder.com/300x200.png?text=Autism" alt="Basketball for Autism">
<div class="symbol">🧩</div>
<a href="autism.html" class="button">Learn More</a>
</div>
</div>
<div class="flex-container">
<a href="https://example.com/more-info" class="button">More Info</a>
<a href="https://example.com/contact" class="button">Contact</a>
</div>
</div>
<footer class="footer">
<p>© 2024 Basketball for People with Disabilities. All rights reserved.</p>
</footer>
</body>
</html>