-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>HTML, CSS, JavaScript HMI</title>
<link rel="Stylesheet" href=StyleSheet.css />
<script type="text/javascript" src="TcAdsWebService.js"></script>
<script type='text/javascript' src="script.js"></script>
</head>
<body>
<div>
<img class='logo' src='https://images.squarespace-cdn.com/content/5f39bef9c1112b663b14fb5f/1601865163911-0MZ2MAQHHEUW4F4UUL4T/MORA_Site_Logo_Edit.png?content-type=image%2Fpng'>
</div>
<div class='title'>
<h1>Industrial HMI with HTML/JavaScript</h1>
</div>
<br>
<div class='motor-wrapper'>
<h2>Motor 1</h2>
<div class='motor-image' id='motor-img'>
<img src='motor.png' width='200px' height='auto'>
</div>
<div class='button-row' text-align='center'>
<button class='btn' id='btnStart'>Start</button>
<button class='btn' id='btnStop'>Stop</button>
<button class='btn' id='btnStandby'>Standby</button>
<button class='btn' id='btnReset'>Reset</button>
</div>
</div>
</body>
</html>