-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsub.html
More file actions
49 lines (42 loc) · 1.05 KB
/
Copy pathsub.html
File metadata and controls
49 lines (42 loc) · 1.05 KB
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
<!DOCTYPE HTML>
<html>
<title>Arduino for aoaoao</title>
<head>
<style>
h1{
color:#17A1A5;
font-size:48px;
}
.box{
border:solid 5px #4db7bb;
width:25%;
height: 300px;
}
input{
width:40%; height: 100px; font-size:40px;
color:#fff;
border:none;
background: black;
}
.onBtn{
margin:40px 0 20px 0;
}
</style>
</head>
<body>
<br><br><br><br><br>
<h1>escape9</h1>
<br><br>
<div class="box">
<form action='/led' method='GET'>
<button type="button" class="navyBtn" onClick="location.href='www.google.com'">
<input class='onBtn' type='submit' value='on'/>
</form>
<form action='/led' method='GET'>
<button type="button" class="navyBtn" onClick="location.href='www.google.com'">
<input class='offBtn' type='submit' value='off'/>
</form>
</div>
<br />
</body>
</html>