aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/basic/test_basic.html
blob: defcbac263e907f75e8506e0db2cae529fd0a18d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
        <title>
        Testing Basic UI Rules
        </title>
</head>

<body>
<h1>Welcome to my webpage!</h1>

<h2>this is an H2</h2>

<h3></h3>

Oops, that was an empty H3 header above. Oh well..

Here is a <a href="http://google.com">link</a>, but here is an
<u>empty</u> one: <a href="http://twitter.com"></a>.

<hr>

<div id="form-div">
  <h2>Just look at this form!</h2>

  Here's an input field:

  <form>
    <label for="b">Favorite number</label>
    <input type="number" id="b" value="50">
  </form>

  I'm going to leave out the semantic tags this time!

  <form>
    Airspeed velocity of an unladen swallow:
    <input type="number" id="s" value="121">
  </form>
</div>


</body>
</html>