HTML5 Content
HTML5 custom content will allow you to further personalize your interactive project, and pre-configure common requirements for working with Websites and local intranets.
(Image above reflects HTML5 Environment Options)
IMPORTANT: You MUST
enable Customize with Export Kit Pro to edit Environment Options.
DOCTYPE
This is the HTML5 doctype for rendering web pages. If you need support for older browsers, you can change this value to the standard HTML doctype. By default this value is set to:
1 | <!DOCTYPE html> |
Read more about DOCTYPES.
Namespaces
This defines the default namespaces used by the markup. By default this value is set to:
1 | xmlns="//www.w3.org/1999/xhtml" |
Custom HEAD
This is the HEAD
content of the HTML page. You can add custom meta
, link
and script
tags here.
(CSS) body {}
This will allow you to define the global body
style. By default this value is set to:
1 | body { margin: 0px; padding: 0px; font-family:"Arial" } |
(CSS) img {}
This will allow you to define the global img
style. By default this value is set to:
1 | img { position: absolute; display: block; margin: 0px; border: none; padding: 0px; } |
(CSS) div {}
This will allow you to define the global div
style. By default this value is set to:
1 | div { position: absolute; } |
CAUTION: If you change this value, this can cause unexpecteddisplay errors
. Consider using Relative Positions to convert folders usingposition:relative;
instead.
Custom CSS
This is your personal custom content of the style sheet.