-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule_polite_words.html
More file actions
145 lines (135 loc) Β· 4.19 KB
/
module_polite_words.html
File metadata and controls
145 lines (135 loc) Β· 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SignConnect | Polite Words Module</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<style>
body {
background: linear-gradient(to right, #ffecd2, #fcb69f);
font-family: 'Segoe UI', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.main-content {
flex: 1;
}
.card-hover {
transition: all 0.3s ease-in-out;
}
.card-hover:hover {
transform: scale(1.05);
box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
}
.navbar {
background: linear-gradient(to right, #43cea2, #185a9d);
}
.logo-img {
height: 40px;
margin-right: 10px;
}
.video-container {
display: flex;
justify-content: center;
margin-top: 20px;
}
video {
max-width: 100%;
height: auto;
border-radius: 8px;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark shadow">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="assets/logo.png" alt="Logo" class="logo-img">
<span>SignConnect</span>
</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="dashboard.html">Dashboard</a></li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="container text-center main-content">
<div class="py-5" data-aos="fade-down">
<h1 class="text-primary mb-3">π Polite Words</h1>
<p class="lead text-secondary">Learn the basic polite words in Sign Language, like Sorry, Thank You, Please, and Welcome.</p>
</div>
<!-- Polite Words Section -->
<div class="row g-4" data-aos="fade-up">
<!-- Sorry -->
<div class="col-md-6">
<div class="card card-hover p-3">
<div class="card-body">
<h3 class="card-title text-success">π Sorry</h3>
<div class="video-container">
<video controls>
<source src="Polite_Words/sorry.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
<!-- Thank You -->
<div class="col-md-6">
<div class="card card-hover p-3">
<div class="card-body">
<h3 class="card-title text-warning">π Thank You</h3>
<div class="video-container">
<video controls>
<source src="Polite_Words/thankyou.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
<!-- Please -->
<div class="col-md-6">
<div class="card card-hover p-3">
<div class="card-body">
<h3 class="card-title text-info">π Please</h3>
<div class="video-container">
<video controls>
<source src="Polite_Words/please.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
<!-- Welcome -->
<div class="col-md-6">
<div class="card card-hover p-3">
<div class="card-body">
<h3 class="card-title text-danger">π Welcome</h3>
<div class="video-container">
<video controls>
<source src="Polite_Words/welcome.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="text-center p-3 bg-light mt-auto">
Β© 2025 SignConnect | Empowering Communication
</footer>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>