-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (109 loc) · 3.66 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voice-Based Email System for Visually Impaired</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #6e8efb, #a777e3);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
max-width: 1200px;
margin: 2rem;
padding: 2rem;
background: rgba(255, 255, 255, 0.95);
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 2rem;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature {
padding: 1.5rem;
background: white;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.feature h3 {
color: #3498db;
margin-top: 0;
}
.cta {
text-align: center;
margin-top: 3rem;
}
.button {
display: inline-block;
padding: 1rem 2rem;
background: #3498db;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}
.button:hover {
background: #2980b9;
}
</style>
</head>
<body>
<div class="container">
<h1>Voice-Based Email System</h1>
<p style="text-align: center; font-size: 1.2rem;">
A revolutionary email system designed for visually impaired users, featuring voice commands and text-to-speech feedback.
</p>
<div class="features">
<div class="feature">
<h3>Voice Commands</h3>
<p>Control the entire application using simple voice commands. Navigate through emails, compose messages, and manage your inbox effortlessly.</p>
</div>
<div class="feature">
<h3>Text-to-Speech</h3>
<p>Have your emails read aloud to you with clear, natural-sounding voice synthesis. Never miss an important message.</p>
</div>
</div>
<div class="features">
<div class="feature">
<h3>Key Features</h3>
<ul>
<li>Compose emails using voice commands</li>
<li>Send emails using voice commands</li>
<li>Listen to incoming emails</li>
<li>Voice-controlled navigation</li>
<li>Manage inbox, sent emails </li>
<li>Easy login and logout functionality</li>
</ul>
</div>
<div class="feature">
<h3>Technical Details</h3>
<ul>
<li>Built with Python</li>
<li>Speech recognition integration</li>
<li>Google Text-to-Speech service</li>
</ul>
</div>
</div>
<div class="cta">
<p>View the project on GitHub:</p>
<a href="https://github.com/Anugupta5102/Voice-based-email-for-Blind" class="button">GitHub Repository</a>
</div>
</div>
</body>
</html>