<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Site Index</title> <link rel="stylesheet" href="/css/site.css"> </head> <body> <!--#include virtual="/includes/header.shtml" --> <div class="layout"> <nav class="sidebar"> <!--#include virtual="/includes/nav.shtml" --> </nav> <main class="content"> <iframe name="content" src="/welcome.shtml" frameborder="0" style="width:100%;height:100%;"></iframe> </main> </div> <!--#include virtual="/includes/footer.shtml" --> </body> </html>
: This represents a specific directory on the embedded web server of the network device, which holds the files necessary to display the user interface. view indexframe shtml
This file extension stands for Server Side Includes HTML . It is a standard HTML file that contains instructions telling the server to insert dynamic content (like the current time, file data, or a live video feed) into the page before sending it to your browser. link rel="stylesheet" href="/css/site.css">