Sha256: b8bf0bccb200094382fc2031611322589f71032e575c7c02a08631aa1e2db029
Contents?: true
Size: 1.11 KB
Versions: 41
Compression:
Stored size: 1.11 KB
Contents
# Opulent Expressions ```html doctype html <!DOCTYPE html> ``` ## Doctype Shortcuts ```html doctype xml <?xml version="1.0" encoding="utf-8" ?> ``` ```html doctype transitional <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ``` ```html doctype strict <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ``` ```html doctype frameset <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> ``` ```html doctype 1.1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> ``` ```html doctype basic <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd"> ``` ```html doctype mobile <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd"> ``` ## Custom Doctypes ```html doctype html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN"> ```
Version data entries
41 entries across 41 versions & 1 rubygems