-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject_ui.html
41 lines (40 loc) · 1.96 KB
/
project_ui.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
<!-- THIS IS THE OLD UI TEMPLATE -->
<!DOCTYPE html>
<html>
<head>
<title>Speech-to-ISL</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="C:/Users/Alisha-PC/Desktop/college stuff/Mega Project/fontawesome-free-5.15.3-web/fontawesome-free-5.15.3-web/css/all.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="row" id="mic">
<div class="col-sm-6">
<img src="bg4.jpg">
</div>
<div class="col-sm-6">
<h1>Say Something</h1>
<button class="btn"><i class="fas fa-microphone"></i></button>
<p>You said: the fat cat ate the mouse</p>
</div>
</div>
<div class="row" id="vid">
<div class="col-sm-12">
<img src="videoimg.jpg">
<video controls>
<source src="clipg.mp4" type="video/mp4">
<!-- <source src="movie.ogg" type="video/ogg"> -->
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>