This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
FireRecord/TestWebsite.html
2013-03-15 10:26:34 -03:00

43 lines
2.2 KiB
HTML

<html>
<head name="headName" id="headId">
<script type="text/javascript" src="analyze.js"></script>
</head>
<body name="bodyName" id="bodyId">
<title name="titleName" id="titleId">This is the title of the document</title><br />
<header name="headerName" id="headerId">This is the header<br />
<nav name="navName" id="navId">This is the navigational menu</nav><br />
</header>
<table name="tableName" id="tableId"><br />
<th name="tableHeadName" id="tableHeadId">table heading</th><br />
<td>Table Cell</td><br />
</table>
<h1 name="headingName" id="headingId">Level 1 Heading</h1><br />
<a href="#" id="anchorId" name="anchorName">Anchor</a><br />
<object name="objectName" id="objectId">This is an object that normally holds a video but I'm too lazy to find one</object><br />
<menu name="menuName" id="menuId">This is a menu</menu><br />
<img src="http://www.natural-environment.com/images/banners/banner_7_glasshouse_mountains.jpg" name="imageName" id="imageId"><br />
<p name="paraName" id="paraId">This is a paragraph</p><br />
<q name="quoteName" id="quoteId">This is a quotation</q><br />
<summary name="summaryName" id="summaryId">This is a summary</summary><br />
<time name="timeName" id="timeId">This is a timestamp</time><br />
<button value="button" type="button" name="buttonName" id="buttonId" onClick="analyze()">Analyze Javascript</button> <br />
<hr name="horizontalRuleName" id="horizontalRuleId"><br />
<form name="formName" id="formId"><br />
<label name="labelName" id="labelId">This is a label</label><br />
<select>
<option value="volvo" name="volvoName" id="volvoId">Volvo</option>
<option value="saab" name="saabName" id="saabId">Saab</option>
<option value="mercedes" name="mercedesName" id="mercedesId">Mercedes</option>
<option value="audi" name="audiName" id="audiId">Audi</option>
</select>
<input type="submit" value="Submit" name="submitButton" id="submitId"><br />
</form>
<ol name="orderedListName" id="orderListId">
<li name="listItemName" id="listItemId">list item</li>
</ol>
<div name="divName" id="divId">div</div>
<iframe src="http://www.google.com" name="iframeName" id="iframeId">This is an iframe</iframe>
<footer name="footerName" id="footerId">This is the footer</footer>
</body>
</html>