-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
51 lines (50 loc) · 1.38 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <style>
*{
box-sizing: border-box;
}
.main-nav
{
/* width: 40%; */
position: absolute;
right: 0px;
float: right;
}
.ts{
position: absolute;
width: 50%;
padding:5%;
float: center;
}
</style> -->
<title>About</title>
<link rel="stylesheet" href="CSS/pg2.css" />
</head>
<header>
<nav>
<ul class="main-nav">
<li><a href="main.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
</header>
<body>
<div class="boxed">
<h1 class="ts"><u>ABOUT</u></h1>
This web application has been made using web speech api
<strong>Speech Synthesis</strong>.Here the user need to write text in text
area and can the user can also set pitch rate and choose languages
according to their choice.Then the user need to click on play button to
get required output. We used
<strong>HTML, CSS, JAVASCRIPT AND BOOTSTRAP</strong> to build this
website.
</div>
</body>
</html>