index.html |
Top Previous Next |
The complete code for index.html used in Creating the Index.html page is:
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>HostSurfer Application Example</title> <link rel="stylesheet" href="css/index.css" type="text/css"/> <link rel="stylesheet" href="css/styles.css" type="text/css"/> <script src="http://zanywhere.cybelesoft.com/js/terminal.min.js" type="text/javascript"></script> <script src="js/index.js"></script> </head> <body> <div class="apppnl" id="hs-view"></div> <div class="apppnl" id="logbar">Messages will be displayed below: <span style="float:right"><input type="checkbox" id="showFields" checked="checked" /> <label for="showFields">show screen fields</label> <button onclick="clearlog()"> Clear log </button></span> </div> <div class="apppnl" id="log"></div> </body> </html> |