-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
52 lines (48 loc) · 1.5 KB
/
test.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<title>With Arduino</title>
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css'>
<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.js'></script>
</head>
<body>
<div style="margin: 10px; display: flex; justify-content: center;" class="ui container">
<div class="ui card">
<div style='text-align: center' class="content">
<span style="font-size: medium; color: rgb(237, 165, 247)"><b>Networking with Arduino</b></span>
</div>
<div class="image">
<img src='https://usercontents-d.styleshare.io/images/32400633/640x640'>
</div>
<div style='text-align: center' class="content">
<div class="header">당신의 선택이<br>반영되고 있습니다!</div>
<br>
<div class="meta">
<a>AUTO MODE is turned Off</a>
</div>
<div class="description">
LED is turned Off<br>
PUMP is turned Off<br>
FAN is turned Off
</div>
</div>
<div class="extra content">
<span class="right floated">
2022 Robotics
</span>
<span>
Your Farm
</span>
</div>
</div>
</div>
</body>
<script>
setTimeout(
function(){
window.close()
},1000);
</script>
</html>