-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
25 lines (25 loc) · 885 Bytes
/
index.php
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
<?php
?>
<!doctype html>
<html>
<head>
<title>Controllo remoto del circuito</title>
<link rel="stylesheet" href="css/general.css" />
<script type="text/javascript" src="js/AJAX.js"></script>
</head>
<body>
<div id="container" class="arrotondato">
<h1>Controllo dei led in remoto tramite la App Web su Azure - 1</h1>
<p> Seleziona un bottone qui sotto per accendere il led associato a quel numero</p>
<p>
<a href="#" id="bottone1">1</a>
<a href="#" id="bottone2">2</a>
<a href="#" id="bottone3">3</a>
<a href="#" id="bottone4">4</a>
<a href="#" id="bottone5">5</a>
<p id="stato"> </p>
</p>
</div>
<script type="text/javascript" src="js/azioni.js"></script>
</body>
</html>