diff options
-rw-r--r-- | html/index.html | 17 | ||||
-rw-r--r-- | html/style.css | 6 |
2 files changed, 20 insertions, 3 deletions
diff --git a/html/index.html b/html/index.html index 102ad09..f60e1b1 100644 --- a/html/index.html +++ b/html/index.html @@ -9,10 +9,21 @@ </head> <body> <table id="main-table" cellspacing="0" cellpadding="0"> - <tr id="top-row"><td id="headers"> + <tr id="top-row"><td> - <!-- The header area: A template of our header --> - <span class="header" id="header-template">Text</span> + <table border="0" width="100%"> + <tr><td id="headers" width="60%"> + + <!-- The category area: A template of our header --> + <span class="header" id="header-template">Text</span> + + </td> + <td align="right" id="logo"> + + Network Statistics + + </td></tr> + </table> </td></tr> <tr id="main-row"><td colspan="2" id="main-cell"> diff --git a/html/style.css b/html/style.css index fdacb1b..bf65862 100644 --- a/html/style.css +++ b/html/style.css @@ -40,6 +40,12 @@ body width: 100%; } +#logo +{ + font-size: 16pt; + font-weight: bold; +} + /* ----------------------------------------------------------------------------- * GROUP HEADERS */ |