forked from codex-iter/text-to-speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
49 lines (48 loc) · 1.3 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
<!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 <strong>Text-to-Speech</strong> has
been made using <strong>HTML,CSS and JAVASCRIPT</strong>.Here the user enters the
text in the textarea and can convert the text to audio when the user
clicks on the play button.This application is on initial phase.We will
bring the updates soon.
</div>
</body>
</html>