-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.html
151 lines (130 loc) · 3.51 KB
/
main.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<title>Web Based VA</title>
</head>
<style>
body {
background-color: rgb(218, 152, 0);
font-family: "Open Sans", Arial;
}
form {
line-height: 27px;
}
h2 {
font-size: 20px;
}
input[type="text"],
input[type="number"] {
min-height: 15px;
border-radius: 5px;
border: 1px solid #cccccc;
}
input[type="radio"] {
margin-left: 12px;
}
#main {
align-items: center;
text-align: center;
margin: 2% 10%;
border-bottom: #dadada solid 3px;
height: 60vh;
overflow: hidden;
background: #f5f5f5;
-webkit-box-shadow: 5px 5px 15px rgba(20, 20, 20, 0.5);
box-shadow: 5px 5px 15px rgba(20, 20, 20, 0.5);
border-radius: 35px;
}
#story {
padding: 0 3%;
}
#top {
background-color: rgb(255, 255, 255);
margin: 2% 10%;
border-radius: 35px;
}
#top img {
display: block;
width: 45%;
margin: 0 auto;
}
.italics {
font-style: italic;
}
.word {
font-weight: bold;
text-decoration: underline;
}
.input {
margin: auto;
}
#input-field {
margin: 1vh auto;
width: 30%;
border-radius: 25px;
border: none;
box-shadow: 5px 5px 15px rgba(186, 126, 126, 0.5);
font-size: 25px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: rgb(34, 34, 34);
padding: 10px;
text-align: center;
}
.container {
margin: 10% auto;
}
.heading {
color: #4D4D4D;
margin: 5vh auto;
font-size: 60px;
font-family: open Sans;
}
.subheading {
color: #302c2cd0;
margin-top: 7vh;
margin-bottom: 5px;
font-size: 25px;
font-family: open Sans;
}
.submit-btn {
width: 15vh;
height: 5vh;
margin-top: 0.8vh;
color: rgb(255, 255, 255);
border-radius: 5px;
padding: 10px 25px;
position: relative;
box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
outline: none;
background-color: #f16e02;
padding: 0;
border: none;
font-size: 25px;
font-family: 'Lato', sans-serif;
}
</style>
<body>
<section id="top">
<a href='https://www.linkpicture.com/view.php?img=LPic5f6e24d6087541322195465'><img src='https://www.linkpicture.com/q/virtual.jpg' type='image'></a>
</section>
<section id="main">
<div class="container">
<form action='http://192.168.43.203/cgi-bin/f.py'>
<div class="heading">
Welcome to your<span style="color: #FE834F;"> web based assistant</span>
</div>
<div class="subheading">Enter command :
<input id="input-field" name='c' type='text' />
<br />
<input class="submit-btn" type='submit' />
</form>
</div>
</div>
</select>
<br>
</section>
</body>
</html>