-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (94 loc) · 2.49 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Veronica</title>
<link rel="icon" href="https://drive.google.com/uc?export=download&id=1bd_Jx-3y0hNfCbJY9vHNctPA30O9jJ-p">
<script src="js/responsivevoice.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<meta charset="utf-8">
<meta name="theme-color" content=#1E5E98>
<meta name="application-name" content="Veronica">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="author" content="shivansh patel">
<style>
input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: solid 2px white;
border-radius: 15px;
-moz-border-radius: 15px;
outline: none;
}
.spsize {
font-size: 25px;
}
.section {
background-color: #011526;
padding: 15px;
height: 65vh;
margin-bottom: 10px;
border-radius: 15px;
width: 90%;
color: white;
overflow:auto;
}
#sectionM{
background-color: #011526;
padding: 15px;
height: 65vh;
margin-bottom: 10px;
border-radius: 15px;
width: 90%;
color: white;
overflow:auto;
display: none;
}
#some_div{
display: none;
}
.op{
opacity: 1.0;
}
.op:hover{
opacity: 0.8;
height: 70px;
width: 70px;
transition: 0.4s ease-out;
}
p{
font-size: 22px;
text-align: left;
}
#micoff{
display: none;
}
</style>
</head>
<body id="dark" bgcolor=#1E5E98>
<center>
<div style="background-color:black;border: solid 4px black; height: 55px; width: 135px;border-radius: 15px;color: white; font-size:30px;" id="some_div">
</div>
</center>
<center>
<div class="section" id="Textdemo">
<p id="txt1"></p>
</div>
</center>
<br><br>
<center>
<div id="sectionM">
</div>
</center>
<input type="text" placeholder="start your chat" id="in1" onkeypress="return chat(event)" class="spsize">
<br>
<center>
<img src="https://drive.google.com/uc?export=download&id=1cQviog8KbAAVbIVI7Ku0a0kouZhcLJ8u" height="60px" width="60px" id="hrf" onclick="start_record()" class="op">
<img src="https://drive.google.com/uc?export=download&id=1J7ZD85X2gSStYOIOElNYLup65EwiIBQT" height="60px" width="60px" id="micoff" onclick="pause_record()" class="op">
</center>
</body>
</html>