-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwheelchair_users.html
More file actions
49 lines (49 loc) · 1.42 KB
/
wheelchair_users.html
File metadata and controls
49 lines (49 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wheelchair Users - Basketball for People with Disabilities</title>
<style>
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;
}
.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