wovnrb 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_todo.yml +5 -0
  3. data/docker/docker-compose.yml +11 -0
  4. data/docker/rails/Dockerfile +6 -0
  5. data/docker/rails/TestSite/.browserslistrc +1 -0
  6. data/docker/rails/TestSite/.gitignore +63 -0
  7. data/docker/rails/TestSite/Gemfile +56 -0
  8. data/docker/rails/TestSite/README.md +24 -0
  9. data/docker/rails/TestSite/Rakefile +6 -0
  10. data/docker/rails/TestSite/app/assets/config/manifest.js +2 -0
  11. data/docker/rails/TestSite/app/assets/images/.keep +0 -0
  12. data/docker/rails/TestSite/app/assets/stylesheets/application.css +15 -0
  13. data/docker/rails/TestSite/app/assets/stylesheets/redirects.scss +3 -0
  14. data/docker/rails/TestSite/app/channels/application_cable/channel.rb +4 -0
  15. data/docker/rails/TestSite/app/channels/application_cable/connection.rb +4 -0
  16. data/docker/rails/TestSite/app/controllers/application_controller.rb +2 -0
  17. data/docker/rails/TestSite/app/controllers/concerns/.keep +0 -0
  18. data/docker/rails/TestSite/app/controllers/pages_controller.rb +7 -0
  19. data/docker/rails/TestSite/app/controllers/redirects_controller.rb +5 -0
  20. data/docker/rails/TestSite/app/helpers/application_helper.rb +2 -0
  21. data/docker/rails/TestSite/app/helpers/pages_helper.rb +2 -0
  22. data/docker/rails/TestSite/app/helpers/redirects_helper.rb +2 -0
  23. data/docker/rails/TestSite/app/javascript/channels/consumer.js +6 -0
  24. data/docker/rails/TestSite/app/javascript/channels/index.js +5 -0
  25. data/docker/rails/TestSite/app/javascript/packs/application.js +17 -0
  26. data/docker/rails/TestSite/app/jobs/application_job.rb +7 -0
  27. data/docker/rails/TestSite/app/mailers/application_mailer.rb +4 -0
  28. data/docker/rails/TestSite/app/models/application_record.rb +3 -0
  29. data/docker/rails/TestSite/app/models/concerns/.keep +0 -0
  30. data/docker/rails/TestSite/app/views/layouts/application.html.erb +15 -0
  31. data/docker/rails/TestSite/app/views/layouts/mailer.html.erb +13 -0
  32. data/docker/rails/TestSite/app/views/layouts/mailer.text.erb +1 -0
  33. data/docker/rails/TestSite/babel.config.js +72 -0
  34. data/docker/rails/TestSite/bin/bundle +114 -0
  35. data/docker/rails/TestSite/bin/rails +4 -0
  36. data/docker/rails/TestSite/bin/rake +4 -0
  37. data/docker/rails/TestSite/bin/setup +36 -0
  38. data/docker/rails/TestSite/bin/webpack +18 -0
  39. data/docker/rails/TestSite/bin/webpack-dev-server +18 -0
  40. data/docker/rails/TestSite/bin/yarn +11 -0
  41. data/docker/rails/TestSite/config.ru +5 -0
  42. data/docker/rails/TestSite/config/application.rb +26 -0
  43. data/docker/rails/TestSite/config/boot.rb +4 -0
  44. data/docker/rails/TestSite/config/cable.yml +10 -0
  45. data/docker/rails/TestSite/config/credentials.yml.enc +1 -0
  46. data/docker/rails/TestSite/config/database.yml +25 -0
  47. data/docker/rails/TestSite/config/environment.rb +5 -0
  48. data/docker/rails/TestSite/config/environments/development.rb +62 -0
  49. data/docker/rails/TestSite/config/environments/production.rb +112 -0
  50. data/docker/rails/TestSite/config/environments/test.rb +49 -0
  51. data/docker/rails/TestSite/config/initializers/application_controller_renderer.rb +8 -0
  52. data/docker/rails/TestSite/config/initializers/assets.rb +14 -0
  53. data/docker/rails/TestSite/config/initializers/backtrace_silencers.rb +7 -0
  54. data/docker/rails/TestSite/config/initializers/content_security_policy.rb +30 -0
  55. data/docker/rails/TestSite/config/initializers/cookies_serializer.rb +5 -0
  56. data/docker/rails/TestSite/config/initializers/filter_parameter_logging.rb +4 -0
  57. data/docker/rails/TestSite/config/initializers/inflections.rb +16 -0
  58. data/docker/rails/TestSite/config/initializers/mime_types.rb +4 -0
  59. data/docker/rails/TestSite/config/initializers/wrap_parameters.rb +14 -0
  60. data/docker/rails/TestSite/config/locales/en.yml +33 -0
  61. data/docker/rails/TestSite/config/puma.rb +38 -0
  62. data/docker/rails/TestSite/config/routes.rb +4 -0
  63. data/docker/rails/TestSite/config/spring.rb +6 -0
  64. data/docker/rails/TestSite/config/storage.yml +34 -0
  65. data/docker/rails/TestSite/config/webpack/development.js +5 -0
  66. data/docker/rails/TestSite/config/webpack/environment.js +3 -0
  67. data/docker/rails/TestSite/config/webpack/production.js +5 -0
  68. data/docker/rails/TestSite/config/webpack/test.js +5 -0
  69. data/docker/rails/TestSite/config/webpacker.yml +96 -0
  70. data/docker/rails/TestSite/db/seeds.rb +7 -0
  71. data/docker/rails/TestSite/lib/assets/.keep +0 -0
  72. data/docker/rails/TestSite/lib/tasks/.keep +0 -0
  73. data/docker/rails/TestSite/log/.keep +0 -0
  74. data/docker/rails/TestSite/package.json +15 -0
  75. data/docker/rails/TestSite/postcss.config.js +12 -0
  76. data/docker/rails/TestSite/public/index.html +9 -0
  77. data/docker/rails/TestSite/public/page.html +13 -0
  78. data/docker/rails/TestSite/public/pages/files/plaintext_unicode.txt +204 -0
  79. data/docker/rails/TestSite/public/pages/files/simple_css.css +8 -0
  80. data/docker/rails/TestSite/public/pages/files/simple_javascript.js +2 -0
  81. data/docker/rails/TestSite/public/pages/html5test.html +555 -0
  82. data/docker/rails/TestSite/public/pages/oldhtml.html +335 -0
  83. data/docker/rails/TestSite/public/pages/xhtml.xhtml +726 -0
  84. data/docker/rails/TestSite/public/redirection_target.html +10 -0
  85. data/docker/rails/TestSite/public/testdir/testpage-dir.html +9 -0
  86. data/docker/rails/TestSite/public/testdir/testpage-redirect-destination.html +9 -0
  87. data/docker/rails/TestSite/public/testpage.html +9 -0
  88. data/docker/rails/TestSite/public/wovn_index.html +24 -0
  89. data/docker/rails/TestSite/start.sh +13 -0
  90. data/docker/rails/TestSite/storage/.keep +0 -0
  91. data/docker/rails/TestSite/test/application_system_test_case.rb +5 -0
  92. data/docker/rails/TestSite/test/channels/application_cable/connection_test.rb +11 -0
  93. data/docker/rails/TestSite/test/controllers/.keep +0 -0
  94. data/docker/rails/TestSite/test/controllers/pages_controller_test.rb +7 -0
  95. data/docker/rails/TestSite/test/controllers/redirects_controller_test.rb +7 -0
  96. data/docker/rails/TestSite/test/fixtures/.keep +0 -0
  97. data/docker/rails/TestSite/test/fixtures/files/.keep +0 -0
  98. data/docker/rails/TestSite/test/helpers/.keep +0 -0
  99. data/docker/rails/TestSite/test/integration/.keep +0 -0
  100. data/docker/rails/TestSite/test/mailers/.keep +0 -0
  101. data/docker/rails/TestSite/test/models/.keep +0 -0
  102. data/docker/rails/TestSite/test/system/.keep +0 -0
  103. data/docker/rails/TestSite/test/test_helper.rb +13 -0
  104. data/docker/rails/TestSite/yarn.lock +7642 -0
  105. data/lib/wovnrb/version.rb +1 -1
  106. data/makefile +16 -0
  107. data/wovnrb.gemspec +3 -3
  108. metadata +112 -10
@@ -0,0 +1,12 @@
1
+ module.exports = {
2
+ plugins: [
3
+ require('postcss-import'),
4
+ require('postcss-flexbugs-fixes'),
5
+ require('postcss-preset-env')({
6
+ autoprefixer: {
7
+ flexbox: 'no-2009'
8
+ },
9
+ stage: 3
10
+ })
11
+ ]
12
+ }
@@ -0,0 +1,9 @@
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>test</title>
5
+ </head>
6
+ <body>
7
+ <h1>Hello WOVN.php world!</h1>
8
+ </body>
9
+ </html>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Standard WOVN Test Page</title>
6
+ </head>
7
+ <body>
8
+ <h1>Website Title (EN)</h1>
9
+ <div>
10
+ <p>This is a sample sentence.</p>
11
+ </div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,204 @@
1
+ Some Text.
2
+
3
+ UTF-8 encoded sample plain-text file
4
+ ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
5
+
6
+ Markus Kuhn [ˈmaʳkʊs kuːn] <mkuhn@acm.org> — 1999-08-20
7
+
8
+
9
+ The ASCII compatible UTF-8 encoding of ISO 10646 and Unicode
10
+ plain-text files is defined in RFC 2279 and in ISO 10646-1 Annex R.
11
+
12
+
13
+ Using Unicode/UTF-8, you can write in emails and source code things such as
14
+
15
+ Mathematics and Sciences:
16
+
17
+ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),
18
+
19
+ ℕ ⊆ ℕ₀ ⊂ ℤ ⊂ ℚ ⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),
20
+
21
+ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm
22
+
23
+ Linguistics and dictionaries:
24
+
25
+ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn
26
+ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]
27
+
28
+ APL:
29
+
30
+ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈
31
+
32
+ Nicer typography in plain text files:
33
+
34
+ ╔══════════════════════════════════════════╗
35
+ ║ ║
36
+ ║ • ‘single’ and “double” quotes ║
37
+ ║ ║
38
+ ║ • Curly apostrophes: “We’ve been here” ║
39
+ ║ ║
40
+ ║ • Latin-1 apostrophe and accents: '´` ║
41
+ ║ ║
42
+ ║ • ‚deutsche‘ „Anführungszeichen“ ║
43
+ ║ ║
44
+ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║
45
+ ║ ║
46
+ ║ • ASCII safety test: 1lI|, 0OD, 8B ║
47
+ ║ ╭─────────╮ ║
48
+ ║ • the euro symbol: │ 14.95 € │ ║
49
+ ║ ╰─────────╯ ║
50
+ ╚══════════════════════════════════════════╝
51
+
52
+ Greek (in Polytonic):
53
+
54
+ The Greek anthem:
55
+
56
+ Σὲ γνωρίζω ἀπὸ τὴν κόψη
57
+ τοῦ σπαθιοῦ τὴν τρομερή,
58
+ σὲ γνωρίζω ἀπὸ τὴν ὄψη
59
+ ποὺ μὲ βία μετράει τὴ γῆ.
60
+
61
+ ᾿Απ᾿ τὰ κόκκαλα βγαλμένη
62
+ τῶν ῾Ελλήνων τὰ ἱερά
63
+ καὶ σὰν πρῶτα ἀνδρειωμένη
64
+ χαῖρε, ὦ χαῖρε, ᾿Ελευθεριά!
65
+
66
+ From a speech of Demosthenes in the 4th century BC:
67
+
68
+ Οὐχὶ ταὐτὰ παρίσταταί μοι γιγνώσκειν, ὦ ἄνδρες ᾿Αθηναῖοι,
69
+ ὅταν τ᾿ εἰς τὰ πράγματα ἀποβλέψω καὶ ὅταν πρὸς τοὺς
70
+ λόγους οὓς ἀκούω· τοὺς μὲν γὰρ λόγους περὶ τοῦ
71
+ τιμωρήσασθαι Φίλιππον ὁρῶ γιγνομένους, τὰ δὲ πράγματ᾿
72
+ εἰς τοῦτο προήκοντα, ὥσθ᾿ ὅπως μὴ πεισόμεθ᾿ αὐτοὶ
73
+ πρότερον κακῶς σκέψασθαι δέον. οὐδέν οὖν ἄλλο μοι δοκοῦσιν
74
+ οἱ τὰ τοιαῦτα λέγοντες ἢ τὴν ὑπόθεσιν, περὶ ἧς βουλεύεσθαι,
75
+ οὐχὶ τὴν οὖσαν παριστάντες ὑμῖν ἁμαρτάνειν. ἐγὼ δέ, ὅτι μέν
76
+ ποτ᾿ ἐξῆν τῇ πόλει καὶ τὰ αὑτῆς ἔχειν ἀσφαλῶς καὶ Φίλιππον
77
+ τιμωρήσασθαι, καὶ μάλ᾿ ἀκριβῶς οἶδα· ἐπ᾿ ἐμοῦ γάρ, οὐ πάλαι
78
+ γέγονεν ταῦτ᾿ ἀμφότερα· νῦν μέντοι πέπεισμαι τοῦθ᾿ ἱκανὸν
79
+ προλαβεῖν ἡμῖν εἶναι τὴν πρώτην, ὅπως τοὺς συμμάχους
80
+ σώσομεν. ἐὰν γὰρ τοῦτο βεβαίως ὑπάρξῃ, τότε καὶ περὶ τοῦ
81
+ τίνα τιμωρήσεταί τις καὶ ὃν τρόπον ἐξέσται σκοπεῖν· πρὶν δὲ
82
+ τὴν ἀρχὴν ὀρθῶς ὑποθέσθαι, μάταιον ἡγοῦμαι περὶ τῆς
83
+ τελευτῆς ὁντινοῦν ποιεῖσθαι λόγον.
84
+
85
+ Δημοσθένους, Γ´ ᾿Ολυνθιακὸς
86
+
87
+ Georgian:
88
+
89
+ From a Unicode conference invitation:
90
+
91
+ გთხოვთ ახლავე გაიაროთ რეგისტრაცია Unicode-ის მეათე საერთაშორისო
92
+ კონფერენციაზე დასასწრებად, რომელიც გაიმართება 10-12 მარტს,
93
+ ქ. მაინცში, გერმანიაში. კონფერენცია შეჰკრებს ერთად მსოფლიოს
94
+ ექსპერტებს ისეთ დარგებში როგორიცაა ინტერნეტი და Unicode-ი,
95
+ ინტერნაციონალიზაცია და ლოკალიზაცია, Unicode-ის გამოყენება
96
+ ოპერაციულ სისტემებსა, და გამოყენებით პროგრამებში, შრიფტებში,
97
+ ტექსტების დამუშავებასა და მრავალენოვან კომპიუტერულ სისტემებში.
98
+
99
+ Russian:
100
+
101
+ From a Unicode conference invitation:
102
+
103
+ Зарегистрируйтесь сейчас на Десятую Международную Конференцию по
104
+ Unicode, которая состоится 10-12 марта 1997 года в Майнце в Германии.
105
+ Конференция соберет широкий круг экспертов по вопросам глобального
106
+ Интернета и Unicode, локализации и интернационализации, воплощению и
107
+ применению Unicode в различных операционных системах и программных
108
+ приложениях, шрифтах, верстке и многоязычных компьютерных системах.
109
+
110
+ Thai (UCS Level 2):
111
+
112
+ Excerpt from a poetry on The Romance of The Three Kingdoms (a Chinese
113
+ classic 'San Gua'):
114
+
115
+ [----------------------------|------------------------]
116
+ ๏ แผ่นดินฮั่นเสื่อมโทรมแสนสังเวช พระปกเกศกองบู๊กู้ขึ้นใหม่
117
+ สิบสองกษัตริย์ก่อนหน้าแลถัดไป สององค์ไซร้โง่เขลาเบาปัญญา
118
+ ทรงนับถือขันทีเป็นที่พึ่ง บ้านเมืองจึงวิปริตเป็นนักหนา
119
+ โฮจิ๋นเรียกทัพทั่วหัวเมืองมา หมายจะฆ่ามดชั่วตัวสำคัญ
120
+ เหมือนขับไสไล่เสือจากเคหา รับหมาป่าเข้ามาเลยอาสัญ
121
+ ฝ่ายอ้องอุ้นยุแยกให้แตกกัน ใช้สาวนั้นเป็นชนวนชื่นชวนใจ
122
+ พลันลิฉุยกุยกีกลับก่อเหตุ ช่างอาเพศจริงหนาฟ้าร้องไห้
123
+ ต้องรบราฆ่าฟันจนบรรลัย ฤๅหาใครค้ำชูกู้บรรลังก์ ฯ
124
+
125
+ (The above is a two-column text. If combining characters are handled
126
+ correctly, the lines of the second column should be aligned with the
127
+ | character above.)
128
+
129
+ Ethiopian:
130
+
131
+ Proverbs in the Amharic language:
132
+
133
+ ሰማይ አይታረስ ንጉሥ አይከሰስ።
134
+ ብላ ካለኝ እንደአባቴ በቆመጠኝ።
135
+ ጌጥ ያለቤቱ ቁምጥና ነው።
136
+ ደሀ በሕልሙ ቅቤ ባይጠጣ ንጣት በገደለው።
137
+ የአፍ ወለምታ በቅቤ አይታሽም።
138
+ አይጥ በበላ ዳዋ ተመታ።
139
+ ሲተረጉሙ ይደረግሙ።
140
+ ቀስ በቀስ፥ ዕንቁላል በእግሩ ይሄዳል።
141
+ ድር ቢያብር አንበሳ ያስር።
142
+ ሰው እንደቤቱ እንጅ እንደ ጉረቤቱ አይተዳደርም።
143
+ እግዜር የከፈተውን ጉሮሮ ሳይዘጋው አይድርም።
144
+ የጎረቤት ሌባ፥ ቢያዩት ይስቅ ባያዩት ያጠልቅ።
145
+ ሥራ ከመፍታት ልጄን ላፋታት።
146
+ ዓባይ ማደሪያ የለው፥ ግንድ ይዞ ይዞራል።
147
+ የእስላም አገሩ መካ የአሞራ አገሩ ዋርካ።
148
+ ተንጋሎ ቢተፉ ተመልሶ ባፉ።
149
+ ወዳጅህ ማር ቢሆን ጨርስህ አትላሰው።
150
+ እግርህን በፍራሽህ ልክ ዘርጋ።
151
+
152
+ Runes:
153
+
154
+ ᚻᛖ ᚳᚹᚫᚦ ᚦᚫᛏ ᚻᛖ ᛒᚢᛞᛖ ᚩᚾ ᚦᚫᛗ ᛚᚪᚾᛞᛖ ᚾᚩᚱᚦᚹᛖᚪᚱᛞᚢᛗ ᚹᛁᚦ ᚦᚪ ᚹᛖᛥᚫ
155
+
156
+ (Old English, which transcribed into Latin reads 'He cwaeth that he
157
+ bude thaem lande northweardum with tha Westsae.' and means 'He said
158
+ that he lived in the northern land near the Western Sea.')
159
+
160
+ Braille:
161
+
162
+ ⡌⠁⠧⠑ ⠼⠁⠒ ⡍⠜⠇⠑⠹⠰⠎ ⡣⠕⠌
163
+
164
+ ⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠙⠑⠁⠙⠒ ⠞⠕ ⠃⠑⠛⠔ ⠺⠊⠹⠲ ⡹⠻⠑ ⠊⠎ ⠝⠕ ⠙⠳⠃⠞
165
+ ⠱⠁⠞⠑⠧⠻ ⠁⠃⠳⠞ ⠹⠁⠞⠲ ⡹⠑ ⠗⠑⠛⠊⠌⠻ ⠕⠋ ⠙⠊⠎ ⠃⠥⠗⠊⠁⠇ ⠺⠁⠎
166
+ ⠎⠊⠛⠝⠫ ⠃⠹ ⠹⠑ ⠊⠇⠻⠛⠹⠍⠁⠝⠂ ⠹⠑ ⠊⠇⠻⠅⠂ ⠹⠑ ⠥⠝⠙⠻⠞⠁⠅⠻⠂
167
+ ⠁⠝⠙ ⠹⠑ ⠡⠊⠑⠋ ⠍⠳⠗⠝⠻⠲ ⡎⠊⠗⠕⠕⠛⠑ ⠎⠊⠛⠝⠫ ⠊⠞⠲ ⡁⠝⠙
168
+ ⡎⠊⠗⠕⠕⠛⠑⠰⠎ ⠝⠁⠍⠑ ⠺⠁⠎ ⠛⠕⠕⠙ ⠥⠏⠕⠝ ⠰⡡⠁⠝⠛⠑⠂ ⠋⠕⠗ ⠁⠝⠹⠹⠔⠛ ⠙⠑
169
+ ⠡⠕⠎⠑ ⠞⠕ ⠏⠥⠞ ⠙⠊⠎ ⠙⠁⠝⠙ ⠞⠕⠲
170
+
171
+ ⡕⠇⠙ ⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠁⠎ ⠙⠑⠁⠙ ⠁⠎ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲
172
+
173
+ ⡍⠔⠙⠖ ⡊ ⠙⠕⠝⠰⠞ ⠍⠑⠁⠝ ⠞⠕ ⠎⠁⠹ ⠹⠁⠞ ⡊ ⠅⠝⠪⠂ ⠕⠋ ⠍⠹
174
+ ⠪⠝ ⠅⠝⠪⠇⠫⠛⠑⠂ ⠱⠁⠞ ⠹⠻⠑ ⠊⠎ ⠏⠜⠞⠊⠊⠥⠇⠜⠇⠹ ⠙⠑⠁⠙ ⠁⠃⠳⠞
175
+ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲ ⡊ ⠍⠊⠣⠞ ⠙⠁⠧⠑ ⠃⠑⠲ ⠔⠊⠇⠔⠫⠂ ⠍⠹⠎⠑⠇⠋⠂ ⠞⠕
176
+ ⠗⠑⠛⠜⠙ ⠁ ⠊⠕⠋⠋⠔⠤⠝⠁⠊⠇ ⠁⠎ ⠹⠑ ⠙⠑⠁⠙⠑⠌ ⠏⠊⠑⠊⠑ ⠕⠋ ⠊⠗⠕⠝⠍⠕⠝⠛⠻⠹
177
+ ⠔ ⠹⠑ ⠞⠗⠁⠙⠑⠲ ⡃⠥⠞ ⠹⠑ ⠺⠊⠎⠙⠕⠍ ⠕⠋ ⠳⠗ ⠁⠝⠊⠑⠌⠕⠗⠎
178
+ ⠊⠎ ⠔ ⠹⠑ ⠎⠊⠍⠊⠇⠑⠆ ⠁⠝⠙ ⠍⠹ ⠥⠝⠙⠁⠇⠇⠪⠫ ⠙⠁⠝⠙⠎
179
+ ⠩⠁⠇⠇ ⠝⠕⠞ ⠙⠊⠌⠥⠗⠃ ⠊⠞⠂ ⠕⠗ ⠹⠑ ⡊⠳⠝⠞⠗⠹⠰⠎ ⠙⠕⠝⠑ ⠋⠕⠗⠲ ⡹⠳
180
+ ⠺⠊⠇⠇ ⠹⠻⠑⠋⠕⠗⠑ ⠏⠻⠍⠊⠞ ⠍⠑ ⠞⠕ ⠗⠑⠏⠑⠁⠞⠂ ⠑⠍⠏⠙⠁⠞⠊⠊⠁⠇⠇⠹⠂ ⠹⠁⠞
181
+ ⡍⠜⠇⠑⠹ ⠺⠁⠎ ⠁⠎ ⠙⠑⠁⠙ ⠁⠎ ⠁ ⠙⠕⠕⠗⠤⠝⠁⠊⠇⠲
182
+
183
+ (The first couple of paragraphs of "A Christmas Carol" by Dickens)
184
+
185
+ Compact font selection example text:
186
+
187
+ ABCDEFGHIJKLMNOPQRSTUVWXYZ /0123456789
188
+ abcdefghijklmnopqrstuvwxyz £©µÀÆÖÞßéöÿ
189
+ –—‘“”„†•…‰™œŠŸž€ ΑΒΓΔΩαβγδω АБВГДабвгд
190
+ ∀∂∈ℝ∧∪≡∞ ↑↗↨↻⇣ ┐┼╔╘░►☺♀ fi�⑀₂ἠḂӥẄɐː⍎אԱა
191
+
192
+ Greetings in various languages:
193
+
194
+ Hello world, Καλημέρα κόσμε, コンニチハ
195
+
196
+ Box drawing alignment tests: █
197
+
198
+ ╔══╦══╗ ┌──┬──┐ ╭──┬──╮ ╭──┬──╮ ┏━━┳━━┓ ┎┒┏┑ ╷ ╻ ┏┯┓ ┌┰┐ ▊ ╱╲╱╲╳╳╳
199
+ ║┌─╨─┐║ │╔═╧═╗│ │╒═╪═╕│ │╓─╁─╖│ ┃┌─╂─┐┃ ┗╃╄┙ ╶┼╴╺╋╸┠┼┨ ┝╋┥ ▋ ╲╱╲╱╳╳╳
200
+ ║│╲ ╱│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╿ │┃ ┍╅╆┓ ╵ ╹ ┗┷┛ └┸┘ ▌ ╱╲╱╲╳╳╳
201
+ ╠╡ ╳ ╞╣ ├╢ ╟┤ ├┼─┼─┼┤ ├╫─╂─╫┤ ┣┿╾┼╼┿┫ ┕┛┖┚ ┌┄┄┐ ╎ ┏┅┅┓ ┋ ▍ ╲╱╲╱╳╳╳
202
+ ║│╱ ╲│║ │║ ║│ ││ │ ││ │║ ┃ ║│ ┃│ ╽ │┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▎
203
+ ║└─╥─┘║ │╚═╤═╝│ │╘═╪═╛│ │╙─╀─╜│ ┃└─╂─┘┃ ░░▒▒▓▓██ ┊ ┆ ╎ ╏ ┇ ┋ ▏
204
+ ╚══╩══╝ └──┴──┘ ╰──┴──╯ ╰──┴──╯ ┗━━┻━━┛ └╌╌┘ ╎ ┗╍╍┛ ┋ ▁▂▃▄▅▆▇█
@@ -0,0 +1,8 @@
1
+ body {
2
+ font-family: Georgia, "Times New Roman",
3
+ Times, serif;
4
+ color: purple;
5
+ background-color: #d8da3d }
6
+ h1 {
7
+ font-family: Helvetica, Geneva, Arial,
8
+ SunSans-Regular, sans-serif }
@@ -0,0 +1,2 @@
1
+ let myVariable = 'Bob';
2
+ myVariable = 'Steve';
@@ -0,0 +1,555 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>HTML5 Test Page</title>
7
+ </head>
8
+ <body>
9
+ <div id="top" role="document">
10
+ <header>
11
+ <h1>HTML5 Test Page</h1>
12
+ <p>This is a test page filled with common HTML elements to be used to provide visual feedback whilst building CSS systems and frameworks.</p>
13
+ </header>
14
+ <nav>
15
+ <ul>
16
+ <li>
17
+ <a href="#text">Text</a>
18
+ <ul>
19
+ <li><a href="#text__headings">Headings</a></li>
20
+ <li><a href="#text__paragraphs">Paragraphs</a></li>
21
+ <li><a href="#text__lists">Lists</a></li>
22
+ <li><a href="#text__blockquotes">Blockquotes</a></li>
23
+ <li><a href="#text__details">Details / Summary</a></li>
24
+ <li><a href="#text__address">Address</a></li>
25
+ <li><a href="#text__hr">Horizontal rules</a></li>
26
+ <li><a href="#text__tables">Tabular data</a></li>
27
+ <li><a href="#text__code">Code</a></li>
28
+ <li><a href="#text__inline">Inline elements</a></li>
29
+ <li><a href="#text__comments">HTML Comments</a></li>
30
+ </ul>
31
+ </li>
32
+ <li>
33
+ <a href="#embedded">Embedded content</a>
34
+ <ul>
35
+ <li><a href="#embedded__images">Images</a></li>
36
+ <li><a href="#embedded__bgimages">Background images</a></li>
37
+ <li><a href="#embedded__audio">Audio</a></li>
38
+ <li><a href="#embedded__video">Video</a></li>
39
+ <li><a href="#embedded__canvas">Canvas</a></li>
40
+ <li><a href="#embedded__meter">Meter</a></li>
41
+ <li><a href="#embedded__progress">Progress</a></li>
42
+ <li><a href="#embedded__svg">Inline SVG</a></li>
43
+ <li><a href="#embedded__iframe">IFrames</a></li>
44
+ <li><a href="#embedded__embed">Embed</a></li>
45
+ <li><a href="#embedded__object">Object</a></li>
46
+ </ul>
47
+ </li>
48
+ <li>
49
+ <a href="#forms">Form elements</a>
50
+ <ul>
51
+ <li><a href="#forms__input">Input fields</a></li>
52
+ <li><a href="#forms__select">Select menus</a></li>
53
+ <li><a href="#forms__checkbox">Checkboxes</a></li>
54
+ <li><a href="#forms__radio">Radio buttons</a></li>
55
+ <li><a href="#forms__textareas">Textareas</a></li>
56
+ <li><a href="#forms__html5">HTML5 inputs</a></li>
57
+ <li><a href="#forms__action">Action buttons</a></li>
58
+ </ul>
59
+ </li>
60
+ </ul>
61
+ </nav>
62
+ <main>
63
+ <section id="text">
64
+ <header><h1>Text</h1></header>
65
+ <article id="text__headings">
66
+ <header>
67
+ <h2>Headings</h2>
68
+ </header>
69
+ <div>
70
+ <h1>Heading 1</h1>
71
+ <h2>Heading 2</h2>
72
+ <h3>Heading 3</h3>
73
+ <h4>Heading 4</h4>
74
+ <h5>Heading 5</h5>
75
+ <h6>Heading 6</h6>
76
+ </div>
77
+ <footer><p><a href="#top">[Top]</a></p></footer>
78
+ </article>
79
+ <article id="text__paragraphs">
80
+ <header><h2>Paragraphs</h2></header>
81
+ <div>
82
+ <p>A paragraph (from the Greek paragraphos, “to write beside” or “written beside”) is a self-contained unit of a discourse in writing dealing with a particular point or idea. A paragraph consists of one or more sentences. Though not required by the syntax of any language, paragraphs are usually an expected part of formal writing, used to organize longer prose.</p>
83
+ </div>
84
+ <footer><p><a href="#top">[Top]</a></p></footer>
85
+ </article>
86
+ <article id="text__blockquotes">
87
+ <header><h2>Blockquotes</h2></header>
88
+ <div>
89
+ <blockquote>
90
+ <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
91
+ <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
92
+ <cite><a href="#!">Said no one, ever.</a></cite>
93
+ </blockquote>
94
+ </div>
95
+ <footer><p><a href="#top">[Top]</a></p></footer>
96
+ </article>
97
+ <article id="text__lists">
98
+ <header><h2>Lists</h2></header>
99
+ <div>
100
+ <h3>Definition list</h3>
101
+ <dl>
102
+ <dt>Definition List Title</dt>
103
+ <dd>This is a definition list division.</dd>
104
+ </dl>
105
+ <h3>Ordered List</h3>
106
+ <ol type="1">
107
+ <li>List Item 1</li>
108
+ <li>
109
+ List Item 2
110
+ <ol type="A">
111
+ <li>List Item 1</li>
112
+ <li>
113
+ List Item 2
114
+ <ol type="a">
115
+ <li>List Item 1</li>
116
+ <li>
117
+ List Item 2
118
+ <ol type="I">
119
+ <li>List Item 1</li>
120
+ <li>
121
+ List Item 2
122
+ <ol type="i">
123
+ <li>List Item 1</li>
124
+ <li>List Item 2</li>
125
+ <li>List Item 3</li>
126
+ </ol>
127
+ </li>
128
+ <li>List Item 3</li>
129
+ </ol>
130
+ </li>
131
+ <li>List Item 3</li>
132
+ </ol>
133
+ </li>
134
+ <li>List Item 3</li>
135
+ </ol>
136
+ </li>
137
+ <li>List Item 3</li>
138
+ </ol>
139
+ <h3>Unordered List</h3>
140
+ <ul>
141
+ <li>List Item 1</li>
142
+ <li>
143
+ List Item 2
144
+ <ul>
145
+ <li>List Item 1</li>
146
+ <li>
147
+ List Item 2
148
+ <ul>
149
+ <li>List Item 1</li>
150
+ <li>
151
+ List Item 2
152
+ <ul>
153
+ <li>List Item 1</li>
154
+ <li>
155
+ List Item 2
156
+ <ul>
157
+ <li>List Item 1</li>
158
+ <li>List Item 2</li>
159
+ <li>List Item 3</li>
160
+ </ul>
161
+ </li>
162
+ <li>List Item 3</li>
163
+ </ul>
164
+ </li>
165
+ <li>List Item 3</li>
166
+ </ul>
167
+ </li>
168
+ <li>List Item 3</li>
169
+ </ul>
170
+ </li>
171
+ <li>List Item 3</li>
172
+ </ul>
173
+ </div>
174
+ <footer><p><a href="#top">[Top]</a></p></footer>
175
+ </article>
176
+ <article id="text__blockquotes">
177
+ <header><h1>Blockquotes</h1></header>
178
+ <div>
179
+ <blockquote>
180
+ <p>A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text.</p>
181
+ <p>It is typically distinguished visually using indentation and a different typeface or smaller size quotation. It may or may not include a citation, usually placed at the bottom.</p>
182
+ <cite><a href="#!">Said no one, ever.</a></cite>
183
+ </blockquote>
184
+ </div>
185
+ <footer><p><a href="#top">[Top]</a></p></footer>
186
+ </article>
187
+ <article id="text__details">
188
+ <header><h1>Details / Summary</h1></header>
189
+ <details>
190
+ <summary>Expand for details</summary>
191
+ <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum, odio! Odio natus ullam ad quaerat, eaque necessitatibus, aliquid distinctio similique voluptatibus dicta consequuntur animi. Quaerat facilis quidem unde eos! Ipsa.</p>
192
+ </details>
193
+ <footer><p><a href="#top">[Top]</a></p></footer>
194
+ </article>
195
+ <article id="text__address">
196
+ <header><h1>Address</h1></header>
197
+ <address>
198
+ Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br>
199
+ Visit us at:<br>
200
+ Example.com<br>
201
+ Box 564, Disneyland<br>
202
+ USA
203
+ </address>
204
+ <footer><p><a href="#top">[Top]</a></p></footer>
205
+ </article>
206
+ <article id="text__hr">
207
+ <header><h2>Horizontal rules</h2></header>
208
+ <div>
209
+ <hr>
210
+ </div>
211
+ <footer><p><a href="#top">[Top]</a></p></footer>
212
+ </article>
213
+ <article id="text__tables">
214
+ <header><h2>Tabular data</h2></header>
215
+ <table>
216
+ <caption>Table Caption</caption>
217
+ <thead>
218
+ <tr>
219
+ <th>Table Heading 1</th>
220
+ <th>Table Heading 2</th>
221
+ <th>Table Heading 3</th>
222
+ <th>Table Heading 4</th>
223
+ <th>Table Heading 5</th>
224
+ </tr>
225
+ </thead>
226
+ <tfoot>
227
+ <tr>
228
+ <th>Table Footer 1</th>
229
+ <th>Table Footer 2</th>
230
+ <th>Table Footer 3</th>
231
+ <th>Table Footer 4</th>
232
+ <th>Table Footer 5</th>
233
+ </tr>
234
+ </tfoot>
235
+ <tbody>
236
+ <tr>
237
+ <td>Table Cell 1</td>
238
+ <td>Table Cell 2</td>
239
+ <td>Table Cell 3</td>
240
+ <td>Table Cell 4</td>
241
+ <td>Table Cell 5</td>
242
+ </tr>
243
+ <tr>
244
+ <td>Table Cell 1</td>
245
+ <td>Table Cell 2</td>
246
+ <td>Table Cell 3</td>
247
+ <td>Table Cell 4</td>
248
+ <td>Table Cell 5</td>
249
+ </tr>
250
+ <tr>
251
+ <td>Table Cell 1</td>
252
+ <td>Table Cell 2</td>
253
+ <td>Table Cell 3</td>
254
+ <td>Table Cell 4</td>
255
+ <td>Table Cell 5</td>
256
+ </tr>
257
+ <tr>
258
+ <td>Table Cell 1</td>
259
+ <td>Table Cell 2</td>
260
+ <td>Table Cell 3</td>
261
+ <td>Table Cell 4</td>
262
+ <td>Table Cell 5</td>
263
+ </tr>
264
+ </tbody>
265
+ </table>
266
+ <footer><p><a href="#top">[Top]</a></p></footer>
267
+ </article>
268
+ <article id="text__code">
269
+ <header><h2>Code</h2></header>
270
+ <div>
271
+ <p><strong>Keyboard input:</strong> <kbd>Cmd</kbd></p>
272
+ <p><strong>Inline code:</strong> <code>&lt;div&gt;code&lt;/div&gt;</code></p>
273
+ <p><strong>Sample output:</strong> <samp>This is sample output from a computer program.</samp></p>
274
+ <h2>Pre-formatted text</h2>
275
+ <pre>P R E F O R M A T T E D T E X T
276
+ ! " # $ % &amp; ' ( ) * + , - . /
277
+ 0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ?
278
+ @ A B C D E F G H I J K L M N O
279
+ P Q R S T U V W X Y Z [ \ ] ^ _
280
+ ` a b c d e f g h i j k l m n o
281
+ p q r s t u v w x y z { | } ~ </pre>
282
+ </div>
283
+ <footer><p><a href="#top">[Top]</a></p></footer>
284
+ </article>
285
+ <article id="text__inline">
286
+ <header><h2>Inline elements</h2></header>
287
+ <div>
288
+ <p><a href="#!">This is a text link</a>.</p>
289
+ <p><strong>Strong is used to indicate strong importance.</strong></p>
290
+ <p><em>This text has added emphasis.</em></p>
291
+ <p>The <b>b element</b> is stylistically different text from normal text, without any special importance.</p>
292
+ <p>The <i>i element</i> is text that is offset from the normal text.</p>
293
+ <p>The <u>u element</u> is text with an unarticulated, though explicitly rendered, non-textual annotation.</p>
294
+ <p><del>This text is deleted</del> and <ins>This text is inserted</ins>.</p>
295
+ <p><s>This text has a strikethrough</s>.</p>
296
+ <p>Superscript<sup>®</sup>.</p>
297
+ <p>Subscript for things like H<sub>2</sub>O.</p>
298
+ <p><small>This small text is small for fine print, etc.</small></p>
299
+ <p>Abbreviation: <abbr title="HyperText Markup Language">HTML</abbr></p>
300
+ <p><q cite="https://developer.mozilla.org/en-US/docs/HTML/Element/q">This text is a short inline quotation.</q></p>
301
+ <p><cite>This is a citation.</cite></p>
302
+ <p>The <dfn>dfn element</dfn> indicates a definition.</p>
303
+ <p>The <mark>mark element</mark> indicates a highlight.</p>
304
+ <p>The <var>variable element</var>, such as <var>x</var> = <var>y</var>.</p>
305
+ <p>The time element: <time datetime="2013-04-06T12:32+00:00">2 weeks ago</time></p>
306
+ </div>
307
+ <footer><p><a href="#top">[Top]</a></p></footer>
308
+ </article>
309
+ <article id="text__comments">
310
+ <header><h2>HTML Comments</h2></header>
311
+ <div>
312
+ <p>There is comment here: <!--This comment should not be displayed--></p>
313
+ <p>There is a comment spanning multiple tags and lines below here.</p>
314
+ <!--<p><a href="#!">This is a text link. But it should not be displayed in a comment</a>.</p>
315
+ <p><strong>Strong is used to indicate strong importance. But, it should not be displayed in a comment</strong></p>
316
+ <p><em>This text has added emphasis. But, it should not be displayed in a comment</em></p>-->
317
+ </div>
318
+ <footer><p><a href="#top">[Top]</a></p></footer>
319
+ </article>
320
+ </section>
321
+ <section id="embedded">
322
+ <header><h2>Embedded content</h2></header>
323
+ <article id="embedded__images">
324
+ <header><h2>Images</h2></header>
325
+ <div>
326
+ <h3>Plain <code>&lt;img&gt;</code> element</h3>
327
+ <p><img src="https://placekitten.com/480/480" alt="Photo of a kitten"></p>
328
+ <h3><code>&lt;figure&gt;</code> element with <code>&lt;img&gt;</code> element</h3>
329
+ <figure><img src="https://placekitten.com/420/420" alt="Photo of a kitten"></figure>
330
+ <h3><code>&lt;figure&gt;</code> element with <code>&lt;img&gt;</code> and <code>&lt;figcaption&gt;</code> elements</h3>
331
+ <figure>
332
+ <img src="https://placekitten.com/420/420" alt="Photo of a kitten">
333
+ <figcaption>Here is a caption for this image.</figcaption>
334
+ </figure>
335
+ <h3><code>&lt;figure&gt;</code> element with a <code>&lt;picture&gt;</code> element</h3>
336
+ <figure>
337
+ <picture>
338
+ <source srcset="https://placekitten.com/800/800"
339
+ media="(min-width: 800px)">
340
+ <img src="https://placekitten.com/420/420" alt="Photo of a kitten" />
341
+ </picture>
342
+ </figure>
343
+ </div>
344
+ <footer><p><a href="#top">[Top]</a></p></footer>
345
+ </article>
346
+ <article id="embedded__bgimages">
347
+ <header><h2>Background images</h2></header>
348
+ <div style="background-image:url('https://placekitten.com/300/300'); width:300px; height: 300px;"></div>
349
+ <footer><p><a href="#top">[Top]</a></p></footer>
350
+ </article>
351
+ <article id="embedded__audio">
352
+ <header><h2>Audio</h2></header>
353
+ <div><audio controls="">audio</audio></div>
354
+ <footer><p><a href="#top">[Top]</a></p></footer>
355
+ </article>
356
+ <article id="embedded__video">
357
+ <header><h2>Video</h2></header>
358
+ <div><video controls="">video</video></div>
359
+ <footer><p><a href="#top">[Top]</a></p></footer>
360
+ </article>
361
+ <article id="embedded__canvas">
362
+ <header><h2>Canvas</h2></header>
363
+ <div><canvas>canvas</canvas></div>
364
+ <footer><p><a href="#top">[Top]</a></p></footer>
365
+ </article>
366
+ <article id="embedded__meter">
367
+ <header><h2>Meter</h2></header>
368
+ <div><meter value="2" min="0" max="10">2 out of 10</meter></div>
369
+ <footer><p><a href="#top">[Top]</a></p></footer>
370
+ </article>
371
+ <article id="embedded__progress">
372
+ <header><h2>Progress</h2></header>
373
+ <div><progress>progress</progress></div>
374
+ <footer><p><a href="#top">[Top]</a></p></footer>
375
+ </article>
376
+ <article id="embedded__svg">
377
+ <header><h2>Inline SVG</h2></header>
378
+ <div><svg width="100px" height="100px"><circle cx="100" cy="100" r="100" fill="#1fa3ec"></circle></svg></div>
379
+ <footer><p><a href="#top">[Top]</a></p></footer>
380
+ </article>
381
+ <article id="embedded__iframe">
382
+ <header><h2>IFrame</h2></header>
383
+ <div><iframe src="index.html" height="300"></iframe></div>
384
+ <footer><p><a href="#top">[Top]</a></p></footer>
385
+ </article>
386
+ <article id="embedded__embed">
387
+ <header><h2>Embed</h2></header>
388
+ <div><embed src="index.html" height="300"></div>
389
+ <footer><p><a href="#top">[Top]</a></p></footer>
390
+ </article>
391
+ <article id="embedded__object">
392
+ <header><h2>Object</h2></header>
393
+ <div><object data="index.html" height="300"></object></div>
394
+ <footer><p><a href="#top">[Top]</a></p></footer>
395
+ </article>
396
+ </section>
397
+ <section id="forms">
398
+ <header><h2>Form elements</h2></header>
399
+ <form>
400
+ <fieldset id="forms__input">
401
+ <legend>Input fields</legend>
402
+ <p>
403
+ <label for="input__text">Text Input</label>
404
+ <input id="input__text" type="text" placeholder="Text Input">
405
+ </p>
406
+ <p>
407
+ <label for="input__password">Password</label>
408
+ <input id="input__password" type="password" placeholder="Type your Password">
409
+ </p>
410
+ <p>
411
+ <label for="input__webaddress">Web Address</label>
412
+ <input id="input__webaddress" type="url" placeholder="https://yoursite.com">
413
+ </p>
414
+ <p>
415
+ <label for="input__emailaddress">Email Address</label>
416
+ <input id="input__emailaddress" type="email" placeholder="name@email.com">
417
+ </p>
418
+ <p>
419
+ <label for="input__phone">Phone Number</label>
420
+ <input id="input__phone" type="tel" placeholder="(999) 999-9999">
421
+ </p>
422
+ <p>
423
+ <label for="input__search">Search</label>
424
+ <input id="input__search" type="search" placeholder="Enter Search Term">
425
+ </p>
426
+ <p>
427
+ <label for="input__text2">Number Input</label>
428
+ <input id="input__text2" type="number" placeholder="Enter a Number">
429
+ </p>
430
+ <p>
431
+ <label for="input__file">File Input</label>
432
+ <input id="input__file" type="file">
433
+ </p>
434
+ </fieldset>
435
+ <p><a href="#top">[Top]</a></p>
436
+ <fieldset id="forms__select">
437
+ <legend>Select menus</legend>
438
+ <p>
439
+ <label for="select">Select</label>
440
+ <select id="select">
441
+ <optgroup label="Option Group">
442
+ <option>Option One</option>
443
+ <option>Option Two</option>
444
+ <option>Option Three</option>
445
+ </optgroup>
446
+ </select>
447
+ </p>
448
+ <p>
449
+ <label for="select_multiple">Select (multiple)</label>
450
+ <select id="select_multiple" multiple="multiple">
451
+ <optgroup label="Option Group">
452
+ <option>Option One</option>
453
+ <option>Option Two</option>
454
+ <option>Option Three</option>
455
+ </optgroup>
456
+ </select>
457
+ </p>
458
+ </fieldset>
459
+ <p><a href="#top">[Top]</a></p>
460
+ <fieldset id="forms__checkbox">
461
+ <legend>Checkboxes</legend>
462
+ <ul>
463
+ <li><label for="checkbox1"><input id="checkbox1" name="checkbox" type="checkbox" checked="checked"> Choice A</label></li>
464
+ <li><label for="checkbox2"><input id="checkbox2" name="checkbox" type="checkbox"> Choice B</label></li>
465
+ <li><label for="checkbox3"><input id="checkbox3" name="checkbox" type="checkbox"> Choice C</label></li>
466
+ </ul>
467
+ </fieldset>
468
+ <p><a href="#top">[Top]</a></p>
469
+ <fieldset id="forms__radio">
470
+ <legend>Radio buttons</legend>
471
+ <ul>
472
+ <li><label for="radio1"><input id="radio1" name="radio" type="radio" checked="checked"> Option 1</label></li>
473
+ <li><label for="radio2"><input id="radio2" name="radio" type="radio"> Option 2</label></li>
474
+ <li><label for="radio3"><input id="radio3" name="radio" type="radio"> Option 3</label></li>
475
+ </ul>
476
+ </fieldset>
477
+ <p><a href="#top">[Top]</a></p>
478
+ <fieldset id="forms__textareas">
479
+ <legend>Textareas</legend>
480
+ <p>
481
+ <label for="textarea">Textarea</label>
482
+ <textarea id="textarea" rows="8" cols="48" placeholder="Enter your message here"></textarea>
483
+ </p>
484
+ </fieldset>
485
+ <p><a href="#top">[Top]</a></p>
486
+ <fieldset id="forms__html5">
487
+ <legend>HTML5 inputs</legend>
488
+ <p>
489
+ <label for="ic">Color input</label>
490
+ <input type="color" id="ic" value="#000000">
491
+ </p>
492
+ <p>
493
+ <label for="in">Number input</label>
494
+ <input type="number" id="in" min="0" max="10" value="5">
495
+ </p>
496
+ <p>
497
+ <label for="ir">Range input</label>
498
+ <input type="range" id="ir" value="10">
499
+ </p>
500
+ <p>
501
+ <label for="idd">Date input</label>
502
+ <input type="date" id="idd" value="1970-01-01">
503
+ </p>
504
+ <p>
505
+ <label for="idm">Month input</label>
506
+ <input type="month" id="idm" value="1970-01">
507
+ </p>
508
+ <p>
509
+ <label for="idw">Week input</label>
510
+ <input type="week" id="idw" value="1970-W01">
511
+ </p>
512
+ <p>
513
+ <label for="idt">Datetime input</label>
514
+ <input type="datetime" id="idt" value="1970-01-01T00:00:00Z">
515
+ </p>
516
+ <p>
517
+ <label for="idtl">Datetime-local input</label>
518
+ <input type="datetime-local" id="idtl" value="1970-01-01T00:00">
519
+ </p>
520
+ <p>
521
+ <label for="idl">Datalist</label>
522
+ <input type="text" id="idl" list="example-list">
523
+ <datalist id="example-list">
524
+ <option value="Example #1" />
525
+ <option value="Example #2" />
526
+ <option value="Example #3" />
527
+ </datalist>
528
+ </p>
529
+ </fieldset>
530
+ <p><a href="#top">[Top]</a></p>
531
+ <fieldset id="forms__action">
532
+ <legend>Action buttons</legend>
533
+ <p>
534
+ <input type="submit" value="<input type=submit>">
535
+ <input type="button" value="<input type=button>">
536
+ <input type="reset" value="<input type=reset>">
537
+ <input type="submit" value="<input disabled>" disabled>
538
+ </p>
539
+ <p>
540
+ <button type="submit">&lt;button type=submit&gt;</button>
541
+ <button type="button">&lt;button type=button&gt;</button>
542
+ <button type="reset">&lt;button type=reset&gt;</button>
543
+ <button type="button" disabled>&lt;button disabled&gt;</button>
544
+ </p>
545
+ </fieldset>
546
+ <p><a href="#top">[Top]</a></p>
547
+ </form>
548
+ </section>
549
+ </main>
550
+ <footer>
551
+ <p>Made by <a href="http://twitter.com/cbracco">@cbracco</a>. Code on <a href="http://github.com/cbracco/html5-test-page">GitHub</a>.</p>
552
+ </footer>
553
+ </div>
554
+ </body>
555
+ </html>