-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultilingual_support.html
39 lines (39 loc) · 1.61 KB
/
multilingual_support.html
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
<!-- multilingual_support.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multilingual Support</title>
<!-- Add any necessary CSS or external libraries -->
</head>
<body>
<div class="container">
<h1>Multilingual Support</h1>
<p>We provide content and support services in multiple languages to ensure accessibility for all families:</p>
<div class="language-selector">
<label for="language">Select Language:</label>
<select id="language">
<option value="en">English</option>
<option value="es">Spanish</option>
<option value="fr">French</option>
<option value="Tel">Telugu</option>
<option value="Hindi">Hindi</option>
<!-- Add more language options as needed -->
</select>
</div>
<p>Please select your preferred language from the dropdown menu above. If you need further assistance in a specific language, please contact us:</p>
<form action="#" method="post">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<button type="submit">Contact Us</button>
</form>
</div>
</body>
</html>