-
Notifications
You must be signed in to change notification settings - Fork 2
/
test_page.html
62 lines (46 loc) · 1.28 KB
/
test_page.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<meta charset=utf-8>
<body>
<h3>Norwegian</h3>
<p>Ære, øre, nyttår.</p>
Blargh </br>
Verb: Throw </br>
Adverb: Accidentally </br>
Adjective: Blissful </br>
Pronoun: She, he, it, that, something </br>
Preposition: After, in, to, on, with </br>
Conjunction: Because, but, and, or </br>
<div align="right">
Determiner: Every, many, a </br>
</div>
Multiple words with combined meaning: Movie star, chief executive officer, etc. (look up by selecting the text before clicking CTRL + SHIFT)
<h3>Issues</h3>
<p>Expressed, jumped, ate, fled, <a class="test">read</a>, bleed, cared, tested, bugged.</p>
<p>Plurals, tests, bugs, hats, raisins.</p>
<p>Doing, testing, finding, reading, fixing, bringing, getting, running, jumping.</p>
<h3>Non-latin</h3>
<p>안녕하세요</p>
<input type="text" name="lname"><br>
<input type="submit" value="Submit">
<style>
ol { background-color: red; }
a { background-color: red; }
</style>
<div id="list">
<ol id="num">
<li>Test</li>
<li>Hello</li>
<li>World</li>
</ol>
<ol>
<li>Test</li>
<li>Hello</li>
<li>World</li>
</ol>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script type="text/javascript">
$("#list > ol").css("background-color", "blue");
</script>
</script>
</body>