-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
40 lines (37 loc) · 1.78 KB
/
Copy pathAbout.html
File metadata and controls
40 lines (37 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="borders.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Text to Speech web App</title>
</head>
<body>
<video autoplay muted loop width=100% height=100% controls id="myVideo">
<source src="mat.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">MyFlaskApp</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item active"><a class="nav-link" href="About.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="Contact.html">Contact</a></li>
</ul>
</div>
<div class="content1">
<h5><centre> Hey,this is a small information about how the app works.</centre></h5>
Go and check out the following to learn more about Text to speech translator.
<ul>
<li><a href="https://cloud.google.com/text-to-speech/docs">Google Translator Documentation</a></li>
<li><a href="https://www.ibm.com/in-en/cloud/watson-text-to-speech">IBM Translator Documentation</a></li>
</ul>
</div>
</body>
</html>