EasyManua.ls Logo

MEN G233 - HTML File Structure and Control Tags

MEN G233
25 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
Functional Description
20G233-00 E1
2017-10-20
Page 19
3.3 Structure of HTML Files
The G233 supports:
Simple HTML structure including a <head> and <body> element
Starting page must be named index.html
Any number of further HTML pages
G233-specific tags and parameters to control display behavior
The following shows a simple example of an index.html:
3.3.1 G233-Specific Control Tags and Parameters
The G233 supports a number of special tags in the index.html to control the display and
web browser application behavior.
If these tags are present in the index.html, the G233 uses their attribute settings. If one or
both of the tags are missing, the G233 uses the default values.
<html>
<head>
<title>Main Menu</title>
<display orientation="vertical" flipped="no"></display>
<timer timeNoInput="30" timeConnection="5" timeWarning="10"></timer>
</head>
<body>
<h1>Main Menu</h1>
<b>Select Element</b>
<br/>
<ol type="1">
<li value="1">
<a href="ipConfig.html">IP Config</a>
<br/>
<i>Configure IP address</i>
</li>
<br/>
<li>
<a href="systemTemp.html">Sys Temp</a>
<br/>
<i>Get system temperature</i>
</li>
<br/>
<li>
<a href="systemInformation.html">Sys Info</a>
<br/>
<i>Get system information</i>
</li>
</ol>
<br/>
</body>
</html>