Advertisement
zhexo

Smart Factory - tracking products HTML code

Feb 13th, 2024
1,087
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.27 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
  5.     <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.6/socket.io.min.js"></script>
  6.     <script src="/static/js/application.js"></script>
  7.     <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  8.     <style>
  9.         * {
  10.             box-sizing: border-box;
  11.         }
  12.         .column {
  13.             float: left;
  14.             width: 50%;
  15.             padding: 10px;
  16.             height: 400px;
  17.         }
  18.     </style>
  19. </head>
  20.  
  21. <body>
  22.     <div class="container">
  23.         <div class="jumbotron">
  24.             <h1>Stock Monitoring in Smart Factory Warehouse</h1>
  25.         </div>
  26.     </div>
  27.  
  28.     <div class="container" id="content">
  29.         <div class="row">
  30.             <div class="row">
  31.                 <div class="column" style="background-color:#aaa;">
  32.                     <h2>Weight:</h2>
  33.                     <div id="val"></div>
  34.                 </div>
  35.                 <div class="column" style="background-color:#bbb;">
  36.                     <h2>Number of product:</h2>
  37.                     <div id="noo"></div>
  38.                 </div>
  39.             </div>
  40.         </div>
  41.     </div>
  42.  
  43. </body>
  44. </html>
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement