Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.30 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html> 
  3. <head>
  4.     <title>SVEGLIA</title>
  5.     <script type="text/javascript" src="script.js"></script>
  6.     <link rel="stylesheet" type="text/css" href="style.css">
  7. </head>
  8. <body>
  9. <div id="imposta">
  10.         <!-- corrente -->
  11.         <h1>ORA CORRENTE</h1>
  12.         <input id="ora_corr" placeholder="ORE" type="text" name="oracorr">
  13.         <input id="min_corr" placeholder="MIN" type="text" name="mincorr">
  14.         <input id="imp_ora_corr" class="btn" type="button" name="corrente" value="imposta">
  15.         <!-- imposta ora -->
  16.         <input id="ora_read" readonly="readonly" type="text" name="oraread">
  17.         <!-- allarme -->
  18.         <h1>ALLARME</h1><br/>
  19.         <input id="ora_all" placeholder="ORE" type="text" name="orall">
  20.         <input id="min_all"  placeholder="MIN"type="text" name="minall">
  21.         <!-- imposta allarme -->
  22.         <input id="imp_ora_all" type="button" class="btn" name="allarme" value="imposta">
  23.         <input id="all_read" readonly="readonly" type="text" name="svegliaread">
  24.         <!-- avanza -->
  25.         <h1>AVANZA</h1><br/>
  26.         <input id="avanza" type="button" name="avanza" class="btn" value="avanza">
  27.         <!-- reset --> ---
  28.         <input id="reset" class="btn" type="button" name="reset" value="reset">
  29. </div>
  30.     <!-- OUTPUT -->
  31. <div id="output">
  32.     <input id="sveglia" readonly="readonly" type="text" name="readallarm">
  33. </div>
  34.     <!-- reset -->
  35.  
  36.  
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement