aspose_html 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +12 -0
  3. data/Gemfile.lock +92 -0
  4. data/LICENSE +21 -0
  5. data/README.md +181 -0
  6. data/Rakefile +8 -0
  7. data/aspose_html.gemspec +58 -0
  8. data/docs/ConversionApi.md +837 -0
  9. data/docs/DocumentApi.md +386 -0
  10. data/docs/OcrApi.md +128 -0
  11. data/docs/SummarizationApi.md +111 -0
  12. data/docs/TranslationApi.md +126 -0
  13. data/docs/storage/DiscUsage.md +9 -0
  14. data/docs/storage/DiscUsageResponse.md +10 -0
  15. data/docs/storage/FileApi.md +240 -0
  16. data/docs/storage/FileDetail.md +13 -0
  17. data/docs/storage/FileDetailsResponse.md +10 -0
  18. data/docs/storage/FileExist.md +9 -0
  19. data/docs/storage/FileExistResponse.md +10 -0
  20. data/docs/storage/FileVersion.md +15 -0
  21. data/docs/storage/FileVersionsResponse.md +10 -0
  22. data/docs/storage/FolderApi.md +229 -0
  23. data/docs/storage/MessageResponse.md +9 -0
  24. data/docs/storage/MoveFileResponse.md +9 -0
  25. data/docs/storage/MoveFolderResponse.md +9 -0
  26. data/docs/storage/RemoveFileResponse.md +9 -0
  27. data/docs/storage/RemoveFolderResponse.md +9 -0
  28. data/docs/storage/StorageApi.md +217 -0
  29. data/docs/storage/StorageExistResponse.md +10 -0
  30. data/lib/aspose_html.rb +68 -0
  31. data/lib/aspose_html/api/html_api.rb +1900 -0
  32. data/lib/aspose_html/api/storage_api.rb +774 -0
  33. data/lib/aspose_html/api_client.rb +386 -0
  34. data/lib/aspose_html/api_error.rb +54 -0
  35. data/lib/aspose_html/configuration.rb +175 -0
  36. data/lib/aspose_html/models/disc_usage.rb +223 -0
  37. data/lib/aspose_html/models/disc_usage_response.rb +260 -0
  38. data/lib/aspose_html/models/file_detail.rb +254 -0
  39. data/lib/aspose_html/models/file_details_response.rb +262 -0
  40. data/lib/aspose_html/models/file_exist.rb +223 -0
  41. data/lib/aspose_html/models/file_exist_response.rb +274 -0
  42. data/lib/aspose_html/models/file_version.rb +273 -0
  43. data/lib/aspose_html/models/file_versions_response.rb +262 -0
  44. data/lib/aspose_html/models/message_response.rb +251 -0
  45. data/lib/aspose_html/models/move_file_response.rb +251 -0
  46. data/lib/aspose_html/models/move_folder_response.rb +251 -0
  47. data/lib/aspose_html/models/remove_file_response.rb +251 -0
  48. data/lib/aspose_html/models/remove_folder_response.rb +251 -0
  49. data/lib/aspose_html/models/storage_exist_response.rb +260 -0
  50. data/lib/aspose_html/version.rb +31 -0
  51. data/spec/api/html_api_spec.rb +971 -0
  52. data/spec/api/model_spec.rb +622 -0
  53. data/spec/api/storage_api_spec.rb +596 -0
  54. data/spec/spec_helper.rb +169 -0
  55. data/testdata/test.txt +1 -0
  56. data/testdata/test1.html +19 -0
  57. data/testdata/test1.html.zip +0 -0
  58. data/testdata/test2.html +46 -0
  59. data/testdata/test2.html.zip +0 -0
  60. data/testdata/test3.html.zip +0 -0
  61. data/testdata/test4.html.zip +0 -0
  62. data/testdata/test_download.jpg +0 -0
  63. data/testdata/test_en.html +46 -0
  64. data/testdata/test_for_delete.html +46 -0
  65. data/testdata/test_for_move.html +46 -0
  66. data/testdata/test_get_doc.zip +0 -0
  67. data/testdata/test_ocr.jpg +0 -0
  68. data/testdata/test_ocr.png +0 -0
  69. data/testdata/test_put_create.html +19 -0
  70. data/testdata/test_put_create.jpg +0 -0
  71. data/testresult/Convert_html.bmp +0 -0
  72. data/testresult/Convert_html.pdf +0 -0
  73. data/testresult/Convert_html.xps +0 -0
  74. data/testresult/Convert_url.pdf +0 -0
  75. data/testresult/Convert_url.png +0 -0
  76. data/testresult/Convert_url.xps +0 -0
  77. data/testresult/Get_document.zip +0 -0
  78. data/testresult/Get_fragment_css_by_url.html +447 -0
  79. data/testresult/Get_fragment_doc.html +9 -0
  80. data/testresult/Get_fragment_doc_css.html +9 -0
  81. data/testresult/Get_fragment_xpath_by_url.html +38 -0
  82. data/testresult/Get_images_doc.zip +0 -0
  83. data/testresult/Get_images_from_url.zip +0 -0
  84. data/testresult/Keyword_by_doc.json +1 -0
  85. data/testresult/Keyword_by_url.json +1 -0
  86. data/testresult/Recognize_en_png.html +10 -0
  87. data/testresult/Translate_url_en_fr.zip +0 -0
  88. data/testresult/putTest.pdf +0 -0
  89. data/testresult/putTest.png +0 -0
  90. data/testresult/putTest.xps +0 -0
  91. data/testresult/putTestDoc.pdf +0 -0
  92. data/testresult/putTestDoc.tiff +0 -0
  93. data/testresult/putTestDoc.xps +0 -0
  94. data/testresult/test_download.jpg +0 -0
  95. metadata +320 -0
@@ -0,0 +1,169 @@
1
+ # -*- coding: utf-8 -*-
2
+ =begin
3
+ --------------------------------------------------------------------------------------------------------------------
4
+ <copyright company="Aspose" file="spec_helper.rb">
5
+ </copyright>
6
+ Copyright (c) 2018 Aspose.HTML for Cloud
7
+ <summary>
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ of this software and associated documentation files (the "Software"), to deal
10
+ in the Software without restriction, including without limitation the rights
11
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ copies of the Software, and to permit persons to whom the Software is
13
+ furnished to do so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+ </summary>
26
+ --------------------------------------------------------------------------------------------------------------------
27
+ =end
28
+
29
+ # load the gem
30
+ require 'aspose_html'
31
+
32
+ CONFIG = {
33
+ "basePath":"https://api.aspose.cloud/v1.1",
34
+ "authPath":"https://api.aspose.cloud/oauth2/token",
35
+ "apiKey":"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
36
+ "appSID":"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
37
+ "debug":false
38
+ }
39
+
40
+
41
+ # from storage api
42
+
43
+ Storage_api = AsposeHtml::StorageApi.new CONFIG
44
+
45
+ # Helper methods
46
+ def upload_file(file_name, upload_folder = nil)
47
+ folder = upload_folder.nil? ? "HtmlTestDoc" : upload_folder
48
+ path = folder + '/' + file_name
49
+ file = __dir__ + '/../testdata/' + file_name
50
+ Storage_api.put_create path, file
51
+ end
52
+
53
+ def download_file(file_name, download_folder = nil)
54
+ folder = download_folder.nil? ? "HtmlTestDoc" : download_folder
55
+
56
+ path = folder + "/" + file_name
57
+ opts = {version_id: nil, storage: nil}
58
+ Storage_api.get_download(path, opts)
59
+ end
60
+
61
+ def save_to_test_dir(answer, dst_file)
62
+ src = answer[:file].path
63
+ dst = File.realpath(__dir__ + '/../testresult')
64
+ dst << "/" << dst_file
65
+ FileUtils.mv(src, dst)
66
+ end
67
+
68
+ def get_file_size(file_name)
69
+ file = __dir__ + '/../testdata/' + file_name
70
+ File.size(file)
71
+ end
72
+
73
+
74
+ # The following was generated by the `rspec --init` command. Conventionally, all
75
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
76
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
77
+ # this file to always be loaded, without a need to explicitly require it in any
78
+ # files.
79
+ #
80
+ # Given that it is always loaded, you are encouraged to keep this file as
81
+ # light-weight as possible. Requiring heavyweight dependencies from this file
82
+ # will add to the boot time of your test suite on EVERY test run, even for an
83
+ # individual file that may not need all of that loaded. Instead, consider making
84
+ # a separate helper file that requires the additional dependencies and performs
85
+ # the additional setup, and require it from the spec files that actually need
86
+ # it.
87
+ #
88
+ # The `.rspec` file also contains a few flags that are not defaults but that
89
+ # users commonly want.
90
+ #
91
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
92
+ RSpec.configure do |config|
93
+ # rspec-expectations config goes here. You can use an alternate
94
+ # assertion/expectation library such as wrong or the stdlib/minitest
95
+ # assertions if you prefer.
96
+ config.expect_with :rspec do |expectations|
97
+ # This option will default to `true` in RSpec 4. It makes the `description`
98
+ # and `failure_message` of custom matchers include text for helper methods
99
+ # defined using `chain`, e.g.:
100
+ # be_bigger_than(2).and_smaller_than(4).description
101
+ # # => "be bigger than 2 and smaller than 4"
102
+ # ...rather than:
103
+ # # => "be bigger than 2"
104
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
105
+ end
106
+
107
+ # rspec-mocks config goes here. You can use an alternate test double
108
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
109
+ config.mock_with :rspec do |mocks|
110
+ # Prevents you from mocking or stubbing a method that does not exist on
111
+ # a real object. This is generally recommended, and will default to
112
+ # `true` in RSpec 4.
113
+ mocks.verify_partial_doubles = true
114
+ end
115
+
116
+ # The settings below are suggested to provide a good initial experience
117
+ # with RSpec, but feel free to customize to your heart's content.
118
+ =begin
119
+ # These two settings work together to allow you to limit a spec run
120
+ # to individual examples or groups you care about by tagging them with
121
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
122
+ # get run.
123
+ config.filter_run :focus
124
+ config.run_all_when_everything_filtered = true
125
+
126
+ # Allows RSpec to persist some state between runs in order to support
127
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
128
+ # you configure your source control system to ignore this file.
129
+ config.example_status_persistence_file_path = "spec/examples.txt"
130
+
131
+ # Limits the available syntax to the non-monkey patched syntax that is
132
+ # recommended. For more details, see:
133
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
134
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
135
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
136
+ config.disable_monkey_patching!
137
+
138
+ # This setting enables warnings. It's recommended, but in some cases may
139
+ # be too noisy due to issues in dependencies.
140
+ config.warnings = true
141
+
142
+ # Many RSpec users commonly either run the entire suite or an individual
143
+ # file, and it's useful to allow more verbose output when running an
144
+ # individual spec file.
145
+ if config.files_to_run.one?
146
+ # Use the documentation formatter for detailed output,
147
+ # unless a formatter has already been configured
148
+ # (e.g. via a command-line flag).
149
+ config.default_formatter = 'doc'
150
+ end
151
+
152
+ # Print the 10 slowest examples and example groups at the
153
+ # end of the spec run, to help surface which specs are running
154
+ # particularly slow.
155
+ config.profile_examples = 10
156
+
157
+ # Run specs in random order to surface order dependencies. If you find an
158
+ # order dependency and want to debug it, you can fix the order by providing
159
+ # the seed, which is printed after each run.
160
+ # --seed 1234
161
+ config.order = :random
162
+
163
+ # Seed global randomization in this process using the `--seed` CLI option.
164
+ # Setting this allows you to use `--seed` to deterministically reproduce
165
+ # test failures related to randomization by passing the same `--seed` value
166
+ # as the one that triggered the failure.
167
+ Kernel.srand config.seed
168
+ =end
169
+ end
@@ -0,0 +1 @@
1
+ test
@@ -0,0 +1,19 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <title> Aspose HTML test page </title>
4
+ <body bgcolor="#080">
5
+ <h1>Aspose test page</h1>
6
+ <h2>Aspose test page</h2>
7
+ <h3>Aspose test page</h3>
8
+ <h4>Aspose test page</h4>
9
+ <h5>Aspose test page</h5>
10
+ <h6>Aspose test page</h6>
11
+ <p>TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
12
+ </p>
13
+ <h3>
14
+ TestTest TestTestTest TestTestTestTest TestTestTestTestTest TestTestTestTestTestTest TestTestTestTestTestTestTest TestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
15
+
16
+ </h3>
17
+ <h1>Aspose test page</h1>
18
+ </body>
19
+ </html>
Binary file
@@ -0,0 +1,46 @@
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8" />
4
+ <title>Example 1</title>
5
+ <style>
6
+ body {
7
+ background-color: powderblue
8
+ }
9
+
10
+ .darkbox {
11
+ background-color:#808080;
12
+ color:white;
13
+ margin:15px;
14
+ padding:25px;
15
+ }
16
+
17
+ </style>
18
+ </head>
19
+ <body >
20
+ <div id="div1">
21
+ <h1 align="center">EXAMPLE</h1>
22
+ <p>The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
23
+ </div>
24
+ <br>
25
+ <div>
26
+ <ol>
27
+ <li>
28
+ The quick brown fox jumps over the lazy dog.
29
+ </li>
30
+ <li>
31
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
32
+ </li>
33
+ <li>
34
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
35
+ </li>
36
+ </ol>
37
+ </div>
38
+ <div class="darkbox">
39
+ <h2>London</h2>
40
+ <p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
41
+ <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
42
+ </div>
43
+ <div>
44
+ </div>
45
+ </body>
46
+ </html>
Binary file
Binary file
Binary file
@@ -0,0 +1,46 @@
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8" />
4
+ <title>Example 1</title>
5
+ <style>
6
+ body {
7
+ background-color: powderblue
8
+ }
9
+
10
+ .darkbox {
11
+ background-color:#808080;
12
+ color:white;
13
+ margin:15px;
14
+ padding:25px;
15
+ }
16
+
17
+ </style>
18
+ </head>
19
+ <body >
20
+ <div id="div1">
21
+ <h1 align="center">EXAMPLE</h1>
22
+ <p>The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
23
+ </div>
24
+ <br>
25
+ <div>
26
+ <ol>
27
+ <li>
28
+ The quick brown fox jumps over the lazy dog.
29
+ </li>
30
+ <li>
31
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
32
+ </li>
33
+ <li>
34
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
35
+ </li>
36
+ </ol>
37
+ </div>
38
+ <div class="darkbox">
39
+ <h2>London</h2>
40
+ <p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
41
+ <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
42
+ </div>
43
+ <div>
44
+ </div>
45
+ </body>
46
+ </html>
@@ -0,0 +1,46 @@
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8" />
4
+ <title>Example 1</title>
5
+ <style>
6
+ body {
7
+ background-color: powderblue
8
+ }
9
+
10
+ .darkbox {
11
+ background-color:#808080;
12
+ color:white;
13
+ margin:15px;
14
+ padding:25px;
15
+ }
16
+
17
+ </style>
18
+ </head>
19
+ <body >
20
+ <div id="div1">
21
+ <h1 align="center">EXAMPLE</h1>
22
+ <p>The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
23
+ </div>
24
+ <br>
25
+ <div>
26
+ <ol>
27
+ <li>
28
+ The quick brown fox jumps over the lazy dog.
29
+ </li>
30
+ <li>
31
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
32
+ </li>
33
+ <li>
34
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
35
+ </li>
36
+ </ol>
37
+ </div>
38
+ <div class="darkbox">
39
+ <h2>London</h2>
40
+ <p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
41
+ <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
42
+ </div>
43
+ <div>
44
+ </div>
45
+ </body>
46
+ </html>
@@ -0,0 +1,46 @@
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8" />
4
+ <title>Example 1</title>
5
+ <style>
6
+ body {
7
+ background-color: powderblue
8
+ }
9
+
10
+ .darkbox {
11
+ background-color:#808080;
12
+ color:white;
13
+ margin:15px;
14
+ padding:25px;
15
+ }
16
+
17
+ </style>
18
+ </head>
19
+ <body >
20
+ <div id="div1">
21
+ <h1 align="center">EXAMPLE</h1>
22
+ <p>The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.</p>
23
+ </div>
24
+ <br>
25
+ <div>
26
+ <ol>
27
+ <li>
28
+ The quick brown fox jumps over the lazy dog.
29
+ </li>
30
+ <li>
31
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
32
+ </li>
33
+ <li>
34
+ The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
35
+ </li>
36
+ </ol>
37
+ </div>
38
+ <div class="darkbox">
39
+ <h2>London</h2>
40
+ <p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
41
+ <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
42
+ </div>
43
+ <div>
44
+ </div>
45
+ </body>
46
+ </html>
Binary file
Binary file
Binary file
@@ -0,0 +1,19 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <title> Aspose HTML test page </title>
4
+ <body bgcolor="#080">
5
+ <h1>Aspose test page</h1>
6
+ <h2>Aspose test page</h2>
7
+ <h3>Aspose test page</h3>
8
+ <h4>Aspose test page</h4>
9
+ <h5>Aspose test page</h5>
10
+ <h6>Aspose test page</h6>
11
+ <p>TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
12
+ </p>
13
+ <h3>
14
+ TestTest TestTestTest TestTestTestTest TestTestTestTestTest TestTestTestTestTestTest TestTestTestTestTestTestTest TestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest TestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTestTest
15
+
16
+ </h3>
17
+ <h1>Aspose test page</h1>
18
+ </body>
19
+ </html>
@@ -0,0 +1,447 @@
1
+ <a href="/default.asp" class="topnav-icons fa fa-home w3-left w3-bar-item w3-button" title="Home"></a>
2
+ <a class="w3-bar-item w3-button" href="/html/default.asp" title="HTML Tutorial">HTML</a>
3
+ <a class="w3-bar-item w3-button" href="/css/default.asp" title="CSS Tutorial">CSS</a>
4
+ <a class="w3-bar-item w3-button" href="/js/default.asp" title="JavaScript Tutorial">JAVASCRIPT</a>
5
+ <a class="w3-bar-item w3-button" href="/sql/default.asp" title="SQL Tutorial">SQL</a>
6
+ <a class="w3-bar-item w3-button" href="/php/default.asp" title="PHP Tutorial">PHP</a>
7
+ <a class="w3-bar-item w3-button" href="/bootstrap/default.asp" title="Bootstrap Tutorial">BOOTSTRAP</a>
8
+ <a class="w3-bar-item w3-button" href="/howto/default.asp" title="How To">HOW TO</a>
9
+ <a class="w3-bar-item w3-button" href="/jquery/default.asp" title="jQuery Tutorial">JQUERY</a>
10
+ <a class="w3-bar-item w3-button" href="/w3css/default.asp" title="W3.CSS Tutorial">W3.CSS</a>
11
+ <a class="w3-bar-item w3-button" href="/python/default.asp" title="Python Tutorial">PYTHON</a>
12
+ <a class="w3-bar-item w3-button" href="/xml/default.asp" title="XML Tutorial">XML</a>
13
+ <a class="w3-bar-item w3-button w3-right" href="/forum/default.asp">FORUM</a>
14
+ <a class="w3-bar-item w3-button" href="/html/default.asp">Learn HTML</a>
15
+ <a class="w3-bar-item w3-button" href="/css/default.asp">Learn CSS</a>
16
+ <a class="w3-bar-item w3-button" href="/w3css/default.asp">Learn W3.CSS</a>
17
+ <a class="w3-bar-item w3-button" href="/colors/default.asp">Learn Colors</a>
18
+ <a class="w3-bar-item w3-button" href="/bootstrap/default.asp">Learn Bootstrap 3</a>
19
+ <a class="w3-bar-item w3-button" href="/bootstrap4/default.asp">Learn Bootstrap 4</a>
20
+ <a class="w3-bar-item w3-button" href="/graphics/default.asp">Learn Graphics</a>
21
+ <a class="w3-bar-item w3-button" href="/icons/default.asp">Learn Icons</a>
22
+ <a class="w3-bar-item w3-button" href="/howto/default.asp">Learn How To</a>
23
+ <a class="w3-bar-item w3-button" href="/js/default.asp">Learn JavaScript</a>
24
+ <a class="w3-bar-item w3-button" href="/jquery/default.asp">Learn jQuery</a>
25
+ <a class="w3-bar-item w3-button" href="/angular/default.asp">Learn AngularJS</a>
26
+ <a class="w3-bar-item w3-button" href="/js/js_json_intro.asp">Learn JSON</a>
27
+ <a class="w3-bar-item w3-button" href="/js/js_ajax_intro.asp">Learn AJAX</a>
28
+ <a class="w3-bar-item w3-button" href="/w3js/default.asp">Learn W3.JS</a>
29
+ <a class="w3-bar-item w3-button" href="/sql/default.asp">Learn SQL</a>
30
+ <a class="w3-bar-item w3-button" href="/php/default.asp">Learn PHP</a>
31
+ <a class="w3-bar-item w3-button" href="/python/default.asp">Learn Python</a>
32
+ <a class="w3-bar-item w3-button" href="/asp/default.asp">Learn ASP</a>
33
+ <a class="w3-bar-item w3-button" href="/nodejs/default.asp">Learn Node.js</a>
34
+ <a class="w3-bar-item w3-button" href="/nodejs/nodejs_raspberrypi.asp">Learn Raspberry Pi</a>
35
+ <a class="w3-bar-item w3-button" href="/w3css/w3css_templates.asp">Web Templates</a>
36
+ <a class="w3-bar-item w3-button" href="/browsers/default.asp">Web Statistics</a>
37
+ <a class="w3-bar-item w3-button" href="/cert/default.asp">Web Certificates</a>
38
+ <a class="w3-bar-item w3-button" href="/tryit/default.asp">Web Editor</a>
39
+ <a class="w3-bar-item w3-button" href="/xml/default.asp">Learn XML</a>
40
+ <a class="w3-bar-item w3-button" href="/xml/ajax_intro.asp">Learn XML AJAX</a>
41
+ <a class="w3-bar-item w3-button" href="/xml/dom_intro.asp">Learn XML DOM</a>
42
+ <a class="w3-bar-item w3-button" href="/xml/xml_dtd_intro.asp">Learn XML DTD</a>
43
+ <a class="w3-bar-item w3-button" href="/xml/schema_intro.asp">Learn XML Schema</a>
44
+ <a class="w3-bar-item w3-button" href="/xml/xsl_intro.asp">Learn XSLT</a>
45
+ <a class="w3-bar-item w3-button" href="/xml/xpath_intro.asp">Learn XPath</a>
46
+ <a class="w3-bar-item w3-button" href="/xml/xquery_intro.asp">Learn XQuery</a>
47
+ <a class="w3-bar-item w3-button" href="/tags/default.asp">HTML Tag Reference</a>
48
+ <a class="w3-bar-item w3-button" href="/tags/ref_eventattributes.asp">HTML Event Reference</a>
49
+ <a class="w3-bar-item w3-button" href="/colors/default.asp">HTML Color Reference</a>
50
+ <a class="w3-bar-item w3-button" href="/tags/ref_attributes.asp">HTML Attribute Reference</a>
51
+ <a class="w3-bar-item w3-button" href="/tags/ref_canvas.asp">HTML Canvas Reference</a>
52
+ <a class="w3-bar-item w3-button" href="/graphics/svg_reference.asp">HTML SVG Reference</a>
53
+ <a class="w3-bar-item w3-button" href="/graphics/google_maps_reference.asp">Google Maps Reference</a>
54
+ <a class="w3-bar-item w3-button" href="/charsets/default.asp">HTML Character Sets</a>
55
+ <a class="w3-bar-item w3-button" href="/charsets/ref_html_ascii.asp">HTML ASCII</a>
56
+ <a class="w3-bar-item w3-button" href="/charsets/ref_html_ansi.asp">HTML ANSI</a>
57
+ <a class="w3-bar-item w3-button" href="/charsets/ref_html_ansi.asp">HTML Windows-1252</a>
58
+ <a class="w3-bar-item w3-button" href="/charsets/ref_html_8859.asp">HTML ISO-8859-1</a>
59
+ <a class="w3-bar-item w3-button" href="/charsets/ref_html_symbols.asp">HTML Symbols</a>
60
+ <a class="w3-bar-item w3-button" href="/charsets/ref_html_utf8.asp">HTML UTF-8</a>
61
+ <a class="w3-bar-item w3-button" href="/cssref/default.asp">CSS Reference</a>
62
+ <a class="w3-bar-item w3-button" href="/cssref/css3_browsersupport.asp">CSS Browser Support</a>
63
+ <a class="w3-bar-item w3-button" href="/cssref/css_selectors.asp">CSS Selector Reference</a>
64
+ <a class="w3-bar-item w3-button" href="/w3css/w3css_references.asp">W3.CSS Reference</a>
65
+ <a class="w3-bar-item w3-button" href="/bootstrap/bootstrap_ref_all_classes.asp">Bootstrap Reference</a>
66
+ <a class="w3-bar-item w3-button" href="/icons/icons_reference.asp">Icon Reference</a>
67
+ <a class="w3-bar-item w3-button" href="/xml/dom_nodetype.asp">XML Reference</a>
68
+ <a class="w3-bar-item w3-button" href="/xml/dom_http.asp">XML Http Reference</a>
69
+ <a class="w3-bar-item w3-button" href="/xml/xsl_elementref.asp">XSLT Reference</a>
70
+ <a class="w3-bar-item w3-button" href="/xml/schema_elements_ref.asp">XML Schema Reference</a>
71
+ <a class="w3-bar-item w3-button" href="/jsref/default.asp">JavaScript Reference</a>
72
+ <a class="w3-bar-item w3-button" href="/jsref/default.asp">HTML DOM Reference</a>
73
+ <a class="w3-bar-item w3-button" href="/jquery/jquery_ref_overview.asp">jQuery Reference</a>
74
+ <a class="w3-bar-item w3-button" href="/angular/angular_ref_directives.asp">AngularJS Reference</a>
75
+ <a class="w3-bar-item w3-button" href="/w3js/w3js_references.asp">W3.JS Reference</a>
76
+ <a class="w3-bar-item w3-button" href="/php/php_ref_overview.asp">PHP Reference</a>
77
+ <a class="w3-bar-item w3-button" href="/sql/sql_quickref.asp">SQL Reference</a>
78
+ <a class="w3-bar-item w3-button" href="/python/python_reference.asp">Python Reference</a>
79
+ <a class="w3-bar-item w3-button" href="/asp/asp_ref_response.asp">ASP Reference</a>
80
+ <a class="w3-bar-item w3-button" href="/html/html_examples.asp">HTML Examples</a>
81
+ <a class="w3-bar-item w3-button" href="/css/css_examples.asp">CSS Examples</a>
82
+ <a class="w3-bar-item w3-button" href="/w3css/w3css_examples.asp">W3.CSS Examples</a>
83
+ <a class="w3-bar-item w3-button" href="/w3css/w3css_templates.asp">W3.CSS Templates</a>
84
+ <a class="w3-bar-item w3-button" href="/bootstrap/bootstrap_examples.asp">Bootstrap Examples</a>
85
+ <a class="w3-bar-item w3-button" href="/howto/default.asp">How To Examples</a>
86
+ <a class="w3-bar-item w3-button" href="/graphics/svg_examples.asp">SVG Examples</a>
87
+ <a class="w3-bar-item w3-button" href="/js/js_examples.asp" target="_top">JavaScript Examples</a>
88
+ <a class="w3-bar-item w3-button" href="/js/js_dom_examples.asp" target="_top">HTML DOM Examples</a>
89
+ <a class="w3-bar-item w3-button" href="/jquery/jquery_examples.asp" target="_top">jQuery Examples</a>
90
+ <a class="w3-bar-item w3-button" href="/angular/angular_examples.asp" target="_top">AngularJS Examples</a>
91
+ <a class="w3-bar-item w3-button" href="/js/js_ajax_examples.asp" target="_top">AJAX Examples</a>
92
+ <a class="w3-bar-item w3-button" href="/w3js/w3js_examples.asp">W3.JS Examples</a>
93
+ <a class="w3-bar-item w3-button" href="/php/php_examples.asp" target="_top">PHP Examples</a>
94
+ <a class="w3-bar-item w3-button" href="/asp/asp_examples.asp" target="_top">ASP Examples</a>
95
+ <a class="w3-bar-item w3-button" href="/xml/xml_examples.asp" target="_top">XML Examples</a>
96
+ <a class="w3-bar-item w3-button" href="/xml/xsl_examples.asp" target="_top">XSLT Examples</a>
97
+ <a class="w3-bar-item w3-button" href="/xml/xpath_examples.asp" target="_top">XPath Examples</a>
98
+ <a class="w3-bar-item w3-button" href="/xml/schema_example.asp" target="_top">XML Schema Examples</a>
99
+ <a class="w3-bar-item w3-button" href="/graphics/svg_examples.asp" target="_top">SVG Examples</a>
100
+ <a target="_top" href="default.asp">CSS Reference</a>
101
+ <a target="_top" href="css3_browsersupport.asp">CSS Browser Support</a>
102
+ <a target="_top" href="css_selectors.asp">CSS Selectors</a>
103
+ <a target="_top" href="css_functions.asp">CSS Functions</a>
104
+ <a target="_top" href="css_ref_aural.asp">CSS Reference Aural</a>
105
+ <a target="_top" href="css_websafe_fonts.asp">CSS Web Safe Fonts</a>
106
+ <a target="_top" href="css_animatable.asp">CSS Animatable</a>
107
+ <a target="_top" href="css_units.asp">CSS Units</a>
108
+ <a target="_top" href="css_pxtoemconversion.asp">CSS PX-EM Converter</a>
109
+ <a target="_top" href="css_colors.asp">CSS Colors</a>
110
+ <a target="_top" href="css_colors_legal.asp">CSS Color Values</a>
111
+ <a target="_top" href="css_default_values.asp">CSS Default Values</a>
112
+ <a target="_top" href="css_entities.asp">CSS Entities</a>
113
+ <a target="_top" href="css3_pr_align-content.asp">align-content</a>
114
+ <a target="_top" href="css3_pr_align-items.asp">align-items</a>
115
+ <a target="_top" href="css3_pr_align-self.asp">align-self</a>
116
+ <a target="_top" href="css3_pr_all.asp">all</a>
117
+ <a target="_top" href="css3_pr_animation.asp">animation</a>
118
+ <a target="_top" href="css3_pr_animation-delay.asp">animation-delay</a>
119
+ <a target="_top" href="css3_pr_animation-direction.asp">animation-direction</a>
120
+ <a target="_top" href="css3_pr_animation-duration.asp">animation-duration</a>
121
+ <a target="_top" href="css3_pr_animation-fill-mode.asp">animation-fill-mode</a>
122
+ <a target="_top" href="css3_pr_animation-iteration-count.asp">animation-iteration-count</a>
123
+ <a target="_top" href="css3_pr_animation-name.asp">animation-name</a>
124
+ <a target="_top" href="css3_pr_animation-play-state.asp">animation-play-state</a>
125
+ <a target="_top" href="css3_pr_animation-timing-function.asp">animation-timing-function</a>
126
+ <a target="_top" href="css3_pr_backface-visibility.asp">backface-visibility</a>
127
+ <a target="_top" href="css3_pr_background.asp">background</a>
128
+ <a target="_top" href="pr_background-attachment.asp">background-attachment</a>
129
+ <a target="_top" href="pr_background-blend-mode.asp">background-blend-mode</a>
130
+ <a target="_top" href="css3_pr_background-clip.asp">background-clip</a>
131
+ <a target="_top" href="pr_background-color.asp">background-color</a>
132
+ <a target="_top" href="pr_background-image.asp">background-image</a>
133
+ <a target="_top" href="css3_pr_background-origin.asp">background-origin</a>
134
+ <a target="_top" href="pr_background-position.asp">background-position</a>
135
+ <a target="_top" href="pr_background-repeat.asp">background-repeat</a>
136
+ <a target="_top" href="css3_pr_background-size.asp">background-size</a>
137
+ <a target="_top" href="pr_border.asp">border</a>
138
+ <a target="_top" href="pr_border-bottom.asp">border-bottom</a>
139
+ <a target="_top" href="pr_border-bottom_color.asp">border-bottom-color</a>
140
+ <a target="_top" href="css3_pr_border-bottom-left-radius.asp">border-bottom-left-radius</a>
141
+ <a target="_top" href="css3_pr_border-bottom-right-radius.asp">border-bottom-right-radius</a>
142
+ <a target="_top" href="pr_border-bottom_style.asp">border-bottom-style</a>
143
+ <a target="_top" href="pr_border-bottom_width.asp">border-bottom-width</a>
144
+ <a target="_top" href="pr_border-collapse.asp">border-collapse</a>
145
+ <a target="_top" href="pr_border-color.asp">border-color</a>
146
+ <a target="_top" href="css3_pr_border-image.asp">border-image</a>
147
+ <a target="_top" href="css3_pr_border-image-outset.asp">border-image-outset</a>
148
+ <a target="_top" href="css3_pr_border-image-repeat.asp">border-image-repeat</a>
149
+ <a target="_top" href="css3_pr_border-image-slice.asp">border-image-slice</a>
150
+ <a target="_top" href="css3_pr_border-image-source.asp">border-image-source</a>
151
+ <a target="_top" href="css3_pr_border-image-width.asp">border-image-width</a>
152
+ <a target="_top" href="pr_border-left.asp">border-left</a>
153
+ <a target="_top" href="pr_border-left_color.asp">border-left-color</a>
154
+ <a target="_top" href="pr_border-left_style.asp">border-left-style</a>
155
+ <a target="_top" href="pr_border-left_width.asp">border-left-width</a>
156
+ <a target="_top" href="css3_pr_border-radius.asp">border-radius</a>
157
+ <a target="_top" href="pr_border-right.asp">border-right</a>
158
+ <a target="_top" href="pr_border-right_color.asp">border-right-color</a>
159
+ <a target="_top" href="pr_border-right_style.asp">border-right-style</a>
160
+ <a target="_top" href="pr_border-right_width.asp">border-right-width</a>
161
+ <a target="_top" href="pr_border-spacing.asp">border-spacing</a>
162
+ <a target="_top" href="pr_border-style.asp">border-style</a>
163
+ <a target="_top" href="pr_border-top.asp">border-top</a>
164
+ <a target="_top" href="pr_border-top_color.asp">border-top-color</a>
165
+ <a target="_top" href="css3_pr_border-top-left-radius.asp">border-top-left-radius</a>
166
+ <a target="_top" href="css3_pr_border-top-right-radius.asp">border-top-right-radius</a>
167
+ <a target="_top" href="pr_border-top_style.asp">border-top-style</a>
168
+ <a target="_top" href="pr_border-top_width.asp">border-top-width</a>
169
+ <a target="_top" href="pr_border-width.asp">border-width</a>
170
+ <a target="_top" href="pr_pos_bottom.asp">bottom</a>
171
+ <a target="_top" href="css3_pr_box-decoration-break.asp">box-decoration-break</a>
172
+ <a target="_top" href="css3_pr_box-shadow.asp">box-shadow</a>
173
+ <a target="_top" href="css3_pr_box-sizing.asp">box-sizing</a>
174
+ <a target="_top" href="pr_tab_caption-side.asp">caption-side</a>
175
+ <a target="_top" href="css3_pr_caret-color.asp">caret-color</a>
176
+ <a target="_top" href="pr_charset_rule.asp">@charset</a>
177
+ <a target="_top" href="pr_class_clear.asp">clear</a>
178
+ <a target="_top" href="pr_pos_clip.asp">clip</a>
179
+ <a target="_top" href="pr_text_color.asp">color</a>
180
+ <a target="_top" href="css3_pr_column-count.asp">column-count</a>
181
+ <a target="_top" href="css3_pr_column-fill.asp">column-fill</a>
182
+ <a target="_top" href="css3_pr_column-gap.asp">column-gap</a>
183
+ <a target="_top" href="css3_pr_column-rule.asp">column-rule</a>
184
+ <a target="_top" href="css3_pr_column-rule-color.asp">column-rule-color</a>
185
+ <a target="_top" href="css3_pr_column-rule-style.asp">column-rule-style</a>
186
+ <a target="_top" href="css3_pr_column-rule-width.asp">column-rule-width</a>
187
+ <a target="_top" href="css3_pr_column-span.asp">column-span</a>
188
+ <a target="_top" href="css3_pr_column-width.asp">column-width</a>
189
+ <a target="_top" href="css3_pr_columns.asp">columns</a>
190
+ <a target="_top" href="pr_gen_content.asp">content</a>
191
+ <a target="_top" href="pr_gen_counter-increment.asp">counter-increment</a>
192
+ <a target="_top" href="pr_gen_counter-reset.asp">counter-reset</a>
193
+ <a target="_top" href="pr_class_cursor.asp">cursor</a>
194
+ <a target="_top" href="pr_text_direction.asp">direction</a>
195
+ <a target="_top" href="pr_class_display.asp">display</a>
196
+ <a target="_top" href="pr_tab_empty-cells.asp">empty-cells</a>
197
+ <a target="_top" href="css3_pr_filter.asp">filter</a>
198
+ <a target="_top" href="css3_pr_flex.asp">flex</a>
199
+ <a target="_top" href="css3_pr_flex-basis.asp">flex-basis</a>
200
+ <a target="_top" href="css3_pr_flex-direction.asp">flex-direction</a>
201
+ <a target="_top" href="css3_pr_flex-flow.asp">flex-flow</a>
202
+ <a target="_top" href="css3_pr_flex-grow.asp">flex-grow</a>
203
+ <a target="_top" href="css3_pr_flex-shrink.asp">flex-shrink</a>
204
+ <a target="_top" href="css3_pr_flex-wrap.asp">flex-wrap</a>
205
+ <a target="_top" href="pr_class_float.asp">float</a>
206
+ <a target="_top" href="pr_font_font.asp">font</a>
207
+ <a target="_top" href="css3_pr_font-face_rule.asp">@font-face</a>
208
+ <a target="_top" href="pr_font_font-family.asp">font-family</a>
209
+ <a target="_top" href="css3_pr_font-kerning.asp">font-kerning</a>
210
+ <a target="_top" href="pr_font_font-size.asp">font-size</a>
211
+ <a target="_top" href="css3_pr_font-size-adjust.asp">font-size-adjust</a>
212
+ <a target="_top" href="css3_pr_font-stretch.asp">font-stretch</a>
213
+ <a target="_top" href="pr_font_font-style.asp">font-style</a>
214
+ <a target="_top" href="pr_font_font-variant.asp">font-variant</a>
215
+ <a target="_top" href="pr_font_weight.asp">font-weight</a>
216
+ <a target="_top" href="pr_grid.asp">grid</a>
217
+ <a target="_top" href="pr_grid-area.asp">grid-area</a>
218
+ <a target="_top" href="pr_grid-auto-columns.asp">grid-auto-columns</a>
219
+ <a target="_top" href="pr_grid-auto-flow.asp">grid-auto-flow</a>
220
+ <a target="_top" href="pr_grid-auto-rows.asp">grid-auto-rows</a>
221
+ <a target="_top" href="pr_grid-column.asp">grid-column</a>
222
+ <a target="_top" href="pr_grid-column-end.asp">grid-column-end</a>
223
+ <a target="_top" href="pr_grid-column-gap.asp">grid-column-gap</a>
224
+ <a target="_top" href="pr_grid-column-start.asp">grid-column-start</a>
225
+ <a target="_top" href="pr_grid-gap.asp">grid-gap</a>
226
+ <a target="_top" href="pr_grid-row.asp">grid-row</a>
227
+ <a target="_top" href="pr_grid-row-end.asp">grid-row-end</a>
228
+ <a target="_top" href="pr_grid-row-gap.asp">grid-row-gap</a>
229
+ <a target="_top" href="pr_grid-row-start.asp">grid-row-start</a>
230
+ <a target="_top" href="pr_grid-template.asp">grid-template</a>
231
+ <a target="_top" href="pr_grid-template-areas.asp">grid-template-areas</a>
232
+ <a target="_top" href="pr_grid-template-columns.asp">grid-template-columns</a>
233
+ <a target="_top" href="pr_grid-template-rows.asp">grid-template-rows</a>
234
+ <a target="_top" href="css3_pr_hanging-punctuation.asp">hanging-punctuation</a>
235
+ <a target="_top" href="pr_dim_height.asp">height</a>
236
+ <a target="_top" href="css3_pr_hyphens.asp">hyphens</a>
237
+ <a target="_top" href="pr_import_rule.asp">@import</a>
238
+ <a target="_top" href="css3_pr_isolation.asp">isolation</a>
239
+ <a target="_top" href="css3_pr_justify-content.asp">justify-content</a>
240
+ <a target="_top" href="css3_pr_animation-keyframes.asp">@keyframes</a>
241
+ <a target="_top" href="pr_pos_left.asp">left</a>
242
+ <a target="_top" href="pr_text_letter-spacing.asp">letter-spacing</a>
243
+ <a target="_top" href="pr_dim_line-height.asp">line-height</a>
244
+ <a target="_top" href="pr_list-style.asp">list-style</a>
245
+ <a target="_top" href="pr_list-style-image.asp">list-style-image</a>
246
+ <a target="_top" href="pr_list-style-position.asp">list-style-position</a>
247
+ <a target="_top" href="pr_list-style-type.asp">list-style-type</a>
248
+ <a target="_top" href="pr_margin.asp">margin</a>
249
+ <a target="_top" href="pr_margin-bottom.asp">margin-bottom</a>
250
+ <a target="_top" href="pr_margin-left.asp">margin-left</a>
251
+ <a target="_top" href="pr_margin-right.asp">margin-right</a>
252
+ <a target="_top" href="pr_margin-top.asp">margin-top</a>
253
+ <a target="_top" href="pr_dim_max-height.asp">max-height</a>
254
+ <a target="_top" href="pr_dim_max-width.asp">max-width</a>
255
+ <a target="_top" href="css3_pr_mediaquery.asp">@media</a>
256
+ <a target="_top" href="pr_dim_min-height.asp">min-height</a>
257
+ <a target="_top" href="pr_dim_min-width.asp">min-width</a>
258
+ <a target="_top" href="pr_mix-blend-mode.asp">mix-blend-mode</a>
259
+ <a target="_top" href="css3_pr_object-fit.asp">object-fit</a>
260
+ <a target="_top" href="css3_pr_object-position.asp">object-position</a>
261
+ <a target="_top" href="css3_pr_opacity.asp">opacity</a>
262
+ <a target="_top" href="css3_pr_order.asp">order</a>
263
+ <a target="_top" href="pr_outline.asp">outline</a>
264
+ <a target="_top" href="pr_outline-color.asp">outline-color</a>
265
+ <a target="_top" href="css3_pr_outline-offset.asp">outline-offset</a>
266
+ <a target="_top" href="pr_outline-style.asp">outline-style</a>
267
+ <a target="_top" href="pr_outline-width.asp">outline-width</a>
268
+ <a target="_top" href="pr_pos_overflow.asp">overflow</a>
269
+ <a target="_top" href="css3_pr_overflow-x.asp">overflow-x</a>
270
+ <a target="_top" href="css3_pr_overflow-y.asp">overflow-y</a>
271
+ <a target="_top" href="pr_padding.asp">padding</a>
272
+ <a target="_top" href="pr_padding-bottom.asp">padding-bottom</a>
273
+ <a target="_top" href="pr_padding-left.asp">padding-left</a>
274
+ <a target="_top" href="pr_padding-right.asp">padding-right</a>
275
+ <a target="_top" href="pr_padding-top.asp">padding-top</a>
276
+ <a target="_top" href="pr_print_pageba.asp">page-break-after</a>
277
+ <a target="_top" href="pr_print_pagebb.asp">page-break-before</a>
278
+ <a target="_top" href="pr_print_pagebi.asp">page-break-inside</a>
279
+ <a target="_top" href="css3_pr_perspective.asp">perspective</a>
280
+ <a target="_top" href="css3_pr_perspective-origin.asp">perspective-origin</a>
281
+ <a target="_top" href="css3_pr_pointer-events.asp">pointer-events</a>
282
+ <a target="_top" href="pr_class_position.asp">position</a>
283
+ <a target="_top" href="pr_gen_quotes.asp">quotes</a>
284
+ <a target="_top" href="css3_pr_resize.asp">resize</a>
285
+ <a target="_top" href="pr_pos_right.asp">right</a>
286
+ <a target="_top" href="pr_scroll-behavior.asp">scroll-behavior</a>
287
+ <a target="_top" href="css3_pr_tab-size.asp">tab-size</a>
288
+ <a target="_top" href="pr_tab_table-layout.asp">table-layout</a>
289
+ <a target="_top" href="pr_text_text-align.asp">text-align</a>
290
+ <a target="_top" href="css3_pr_text-align-last.asp">text-align-last</a>
291
+ <a target="_top" href="pr_text_text-decoration.asp">text-decoration</a>
292
+ <a target="_top" href="css3_pr_text-decoration-color.asp">text-decoration-color</a>
293
+ <a target="_top" href="css3_pr_text-decoration-line.asp">text-decoration-line</a>
294
+ <a target="_top" href="css3_pr_text-decoration-style.asp">text-decoration-style</a>
295
+ <a target="_top" href="pr_text_text-indent.asp">text-indent</a>
296
+ <a target="_top" href="css3_pr_text-justify.asp">text-justify</a>
297
+ <a target="_top" href="css3_pr_text-overflow.asp">text-overflow</a>
298
+ <a target="_top" href="css3_pr_text-shadow.asp">text-shadow</a>
299
+ <a target="_top" href="pr_text_text-transform.asp">text-transform</a>
300
+ <a target="_top" href="pr_pos_top.asp">top</a>
301
+ <a target="_top" href="css3_pr_transform.asp">transform</a>
302
+ <a target="_top" href="css3_pr_transform-origin.asp">transform-origin</a>
303
+ <a target="_top" href="css3_pr_transform-style.asp">transform-style</a>
304
+ <a target="_top" href="css3_pr_transition.asp">transition</a>
305
+ <a target="_top" href="css3_pr_transition-delay.asp">transition-delay</a>
306
+ <a target="_top" href="css3_pr_transition-duration.asp">transition-duration</a>
307
+ <a target="_top" href="css3_pr_transition-property.asp">transition-property</a>
308
+ <a target="_top" href="css3_pr_transition-timing-function.asp">transition-timing-function</a>
309
+ <a target="_top" href="pr_text_unicode-bidi.asp">unicode-bidi</a>
310
+ <a target="_top" href="css3_pr_user-select.asp">user-select</a>
311
+ <a target="_top" href="pr_pos_vertical-align.asp">vertical-align</a>
312
+ <a target="_top" href="pr_class_visibility.asp">visibility</a>
313
+ <a target="_top" href="pr_text_white-space.asp">white-space</a>
314
+ <a target="_top" href="pr_dim_width.asp">width</a>
315
+ <a target="_top" href="css3_pr_word-break.asp">word-break</a>
316
+ <a target="_top" href="pr_text_word-spacing.asp">word-spacing</a>
317
+ <a target="_top" href="css3_pr_word-wrap.asp">word-wrap</a>
318
+ <a target="_top" href="pr_pos_z-index.asp">z-index</a>
319
+ <a class="w3-left w3-btn" href="css3_browsersupport.asp">❮ Previous</a>
320
+ <a class="w3-right w3-btn" href="css_functions.asp">Next ❯</a>
321
+ <a target="_blank" href="trysel.asp">CSS Selector Tester</a>
322
+ <a href="sel_class.asp">.<i>class</i></a>
323
+ <a href="sel_id.asp">#<i>id</i></a>
324
+ <a href="sel_all.asp">*</a>
325
+ <a href="sel_element.asp">element</a>
326
+ <a href="sel_element_comma.asp">element,element</a>
327
+ <a href="sel_element_element.asp"><i>element</i> <i>element</i></a>
328
+ <a href="sel_element_gt.asp"><i>element</i>><i>element</i></a>
329
+ <a href="sel_element_pluss.asp"><i>element</i>+<i>element</i></a>
330
+ <a href="sel_gen_sibling.asp"><i>element1</i>~<i>element2</i></a>
331
+ <a href="sel_attribute.asp">[<i>attribute</i>]</a>
332
+ <a href="sel_attribute_value.asp">[<i>attribute</i>=<i>value</i>]</a>
333
+ <a href="sel_attribute_value_contains.asp">[<i>attribute</i>~=<i>value</i>]</a>
334
+ <a href="sel_attribute_value_lang.asp">[<i>attribute</i>|=<i>value</i>]</a>
335
+ <a href="sel_attr_begin.asp">[<i>attribute</i>^=<i>value</i>]</a>
336
+ <a href="sel_attr_end.asp">[<i>attribute</i>$=<i>value</i>]</a>
337
+ <a href="sel_attr_contain.asp">[<i>attribute</i>*=<i>value</i>]</a>
338
+ <a href="sel_active.asp">:active</a>
339
+ <a href="sel_after.asp">::after</a>
340
+ <a href="sel_before.asp">::before</a>
341
+ <a href="sel_checked.asp">:checked</a>
342
+ <a href="sel_disabled.asp">:disabled</a>
343
+ <a href="sel_empty.asp">:empty</a>
344
+ <a href="sel_enabled.asp">:enabled</a>
345
+ <a href="sel_firstchild.asp">:first-child</a>
346
+ <a href="sel_firstletter.asp">::first-letter</a>
347
+ <a href="sel_firstline.asp">::first-line</a>
348
+ <a href="sel_first-of-type.asp">:first-of-type</a>
349
+ <a href="sel_focus.asp">:focus</a>
350
+ <a href="sel_hover.asp">:hover</a>
351
+ <a href="sel_in-range.asp">:in-range</a>
352
+ <a href="sel_invalid.asp">:invalid</a>
353
+ <a href="sel_lang.asp">:lang(<i>language</i>)</a>
354
+ <a href="sel_last-child.asp">:last-child</a>
355
+ <a href="sel_last-of-type.asp">:last-of-type</a>
356
+ <a href="sel_link.asp">:link</a>
357
+ <a href="sel_not.asp">:not(<i>selector</i>)</a>
358
+ <a href="sel_nth-child.asp">:nth-child(<i>n</i>)</a>
359
+ <a href="sel_nth-last-child.asp">:nth-last-child(<i>n</i>)</a>
360
+ <a href="sel_nth-last-of-type.asp">:nth-last-of-type(<i>n</i>)</a>
361
+ <a href="sel_nth-of-type.asp">:nth-of-type(<i>n</i>)</a>
362
+ <a href="sel_only-of-type.asp">:only-of-type</a>
363
+ <a href="sel_only-child.asp">:only-child</a>
364
+ <a href="sel_optional.asp">:optional</a>
365
+ <a href="sel_out-of-range.asp">:out-of-range</a>
366
+ <a href="sel_read-only.asp">:read-only</a>
367
+ <a href="sel_read-write.asp">:read-write</a>
368
+ <a href="sel_required.asp">:required</a>
369
+ <a href="sel_root.asp">:root</a>
370
+ <a href="sel_selection.asp">::selection</a>
371
+ <a href="sel_target.asp">:target</a>
372
+ <a href="sel_valid.asp">:valid</a>
373
+ <a href="sel_visited.asp">:visited</a>
374
+ <a class="w3-left w3-btn" href="css3_browsersupport.asp">❮ Previous</a>
375
+ <a class="w3-right w3-btn" href="css_functions.asp">Next ❯</a>
376
+ <a href="/colors/colors_picker.asp">COLOR PICKER</a>
377
+ <a href="/colors/colors_picker.asp">
378
+ <img src="/images/colorpicker.gif" alt="colorpicker"></a>
379
+ <a href="/howto/default.asp" class="w3-hover-text-white">HOW TO</a>
380
+ <a href="/howto/howto_js_tabs.asp">Tabs</a>
381
+ <a href="/howto/howto_css_dropdown.asp">Dropdowns</a>
382
+ <a href="/howto/howto_js_accordion.asp">Accordions</a>
383
+ <a href="/howto/howto_js_sidenav.asp">Side Navigation</a>
384
+ <a href="/howto/howto_js_topnav.asp">Top Navigation</a>
385
+ <a href="/howto/howto_css_modals.asp">Modal Boxes</a>
386
+ <a href="/howto/howto_js_progressbar.asp">Progress Bars</a>
387
+ <a href="/howto/howto_css_parallax.asp">Parallax</a>
388
+ <a href="/howto/howto_css_login_form.asp">Login Form</a>
389
+ <a href="/howto/howto_html_include.asp">HTML Includes</a>
390
+ <a href="/howto/howto_google_maps.asp">Google Maps</a>
391
+ <a href="/howto/howto_js_rangeslider.asp">Range Sliders</a>
392
+ <a href="/howto/howto_css_tooltip.asp">Tooltips</a>
393
+ <a href="/howto/howto_js_slideshow.asp">Slideshow</a>
394
+ <a href="/howto/howto_js_filter_lists.asp">Filter List</a>
395
+ <a href="/howto/howto_js_sort_list.asp">Sort List</a>
396
+ <a target="_blank" href="//www.w3schools.com/cert/default.asp">CERTIFICATES</a>
397
+ <a href="/cert/cert_html.asp">HTML</a>
398
+ <a href="/cert/cert_css.asp">CSS</a>
399
+ <a href="/cert/cert_javascript.asp">JavaScript</a>
400
+ <a href="/cert/cert_php.asp">PHP</a>
401
+ <a href="/cert/cert_jquery.asp">jQuery</a>
402
+ <a href="/cert/cert_bootstrap.asp">Bootstrap</a>
403
+ <a href="/cert/cert_xml.asp">XML</a>
404
+ <a target="_blank" href="//www.w3schools.com/cert/default.asp" class="w3-button w3-dark-grey" style="text-decoration:none">
405
+ Read More »</a>
406
+ <a href="/forum/default.asp" target="_blank">FORUM</a>
407
+ <a href="/about/default.asp" target="_top">ABOUT</a>
408
+ <a href="/html/default.asp">HTML Tutorial</a>
409
+ <a href="/css/default.asp">CSS Tutorial</a>
410
+ <a href="/js/default.asp">JavaScript Tutorial</a>
411
+ <a href="/howto/default.asp">How To Tutorial</a>
412
+ <a href="/w3css/default.asp">W3.CSS Tutorial</a>
413
+ <a href="/bootstrap/default.asp">Bootstrap Tutorial</a>
414
+ <a href="/sql/default.asp">SQL Tutorial</a>
415
+ <a href="/php/default.asp">PHP Tutorial</a>
416
+ <a href="/jquery/default.asp">jQuery Tutorial</a>
417
+ <a href="/python/default.asp">Python Tutorial</a>
418
+ <a href="/tags/default.asp">HTML Reference</a>
419
+ <a href="/cssref/default.asp">CSS Reference</a>
420
+ <a href="/jsref/default.asp">JavaScript Reference</a>
421
+ <a href="/w3css/w3css_references.asp">W3.CSS Reference</a>
422
+ <a href="/bootstrap/bootstrap_ref_all_classes.asp">Bootstrap Reference</a>
423
+ <a href="/sql/sql_ref_mysql.asp">SQL Reference</a>
424
+ <a href="/php/php_ref_overview.asp">PHP Reference</a>
425
+ <a href="/colors/colors_names.asp">HTML Colors</a>
426
+ <a href="/jquery/jquery_ref_overview.asp">jQuery Reference</a>
427
+ <a href="/python/python_reference.asp">Python Reference</a>
428
+ <a href="/html/html_examples.asp">HTML Examples</a>
429
+ <a href="/css/css_examples.asp">CSS Examples</a>
430
+ <a href="/js/js_examples.asp">JavaScript Examples</a>
431
+ <a href="/howto/default.asp">How To Examples</a>
432
+ <a href="/w3css/w3css_examples.asp">W3.CSS Examples</a>
433
+ <a href="/bootstrap/bootstrap_examples.asp">Bootstrap Examples</a>
434
+ <a href="/php/php_examples.asp">PHP Examples</a>
435
+ <a href="/jquery/jquery_examples.asp">jQuery Examples</a>
436
+ <a href="/angular/angular_examples.asp">Angular Examples</a>
437
+ <a href="/xml/xml_examples.asp">XML Examples</a>
438
+ <a href="/cert/default.asp">HTML Certificate</a>
439
+ <a href="/cert/default.asp">CSS Certificate</a>
440
+ <a href="/cert/default.asp">JavaScript Certificate</a>
441
+ <a href="/cert/default.asp">jQuery Certificate</a>
442
+ <a href="/cert/default.asp">PHP Certificate</a>
443
+ <a href="/cert/default.asp">Bootstrap Certificate</a>
444
+ <a href="/cert/default.asp">XML Certificate</a>
445
+ <a href="/about/about_copyright.asp">terms of use</a>
446
+ <a href="/about/about_privacy.asp">cookie and privacy policy</a>
447
+ <a href="/about/about_copyright.asp">Copyright 1999-2018</a>