-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 949 Bytes
/
Copy pathindex.html
File metadata and controls
45 lines (41 loc) · 949 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="with=device-with", initial-scale="1.0">
<title> Your WebTerminal </title>
<style> body {
background-color: rgb(0, 0, 0);
font-family: Arial, Helvetica, sans-serif; margin: 20px;
}
.container {
width: 100%;
max-width: 1200%;
margin: 0 auto;
padding: 20 px;
background-color: rgb(63, 219, 2);
}
@media screen and (max-width: 600px) {
.container {
padding: 10px;
}
}
@media screen and (min-width: 601px) and (max-width: 900px) {
.container{
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<form method="POST" action="/form">
<br>
<label> Type in an operator: </label><input name= "OperatorfCalc" type="string" value= "" />
<br>
<br> <br>
<input type="submit" value="submit" />
</form>
</div>
</body>
</html>