-
Notifications
You must be signed in to change notification settings - Fork 2
/
done.html
117 lines (113 loc) · 3.26 KB
/
done.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
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Speech to ISL</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
html{
/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(public/img/videoimg3.jpeg); */
background-image: url("public/img/videoimg3.jpeg");
background-repeat: no-repeat;
background-size: cover;
background-position-x: 373px;
background-position-y: -65px;
background-color: #3e9195;
}
body {
margin: 40px auto;
/* max-width: 650px; */
line-height: 1.6;
font-size: 18px;
font-family: 'Bree Serif';
color: #444;
padding: 0 10px;
background-color: transparent;
/* background-image: url('public/img/videoimg3'); */
/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(public/img/videoimg3);
background-repeat: no-repeat;
background-size: cover; */
/* height: 200vh; */
/* background-position-x: 373px;
background-color: #59a1a3; */
}
/* .container{
padding-bottom: 30px;
} */
h2 {
line-height: 1.2;
}
#vid .col-sm-12{
position: relative;
}
.btn{
/* height: 110px; */
/* width: 110px; */
/* border-radius: 80px; */
/* margin: 0px 25px; */
font-size: 30px;
font-family: 'Bree Serif';
margin-top: 165px;
border: solid;
color: honeydew;
/* background-color: pink; */
/* padding: 25px 0; */
}
#dispFlex2{
text-align: center;
display: flex;
/* padding-bottom: 50px; */
}
#vid .col-sm-12 img{
width: 925px;
/* margin-left: -10%; */
}
#vid .col-sm-12 video{
position: absolute;
/* right: 17%; */
left: 23%;
top: 25%;
max-width: 61%;
}
#syntaxChange{
text-align: center;
}
#syntaxChange p{
color: honeydew;
font-size: 30px;
}
/*
body {
display: grid;
margin: 0;
height: 100vh;
width: 100vw;
} */
</style>
</head>
<body>
<div class="row" id="vid">
<div class="container">
<!-- <a href="/" class="btn"><i class="material-icons">arrow_back</i>Go Back</a> -->
<div id="syntaxChange">
<p>The Original syntax is : <%= normalSyntax%><br>The ISL syntax is : <%=islSyntax %></p>
</div>
<div class="col-sm-12">
<div id="dispFlex2">
<!-- <div id="syntaxChange">
<p>The Original syntax is : <%= normalSyntax%><br>The ISL syntax is : <%=islSyntax %></p>
</div> -->
<!-- <img src="public/img/videoimg.jpg"> -->
<a href="/" class="btn"><i class="material-icons">arrow_back</i> Go Back</a>
<video id="videoPlayer" width="700" height="350" controls muted="muted" autoplay>
<source src="/video" type="video/mp4" />
</video>
</div>
</div>
</div>
</body>
</html>