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

Version Path
opulent-1.6.7 docs/doctype.md
opulent-1.6.6 docs/doctype.md
opulent-1.6.5 docs/doctype.md
opulent-1.6.3 docs/doctype.md
opulent-1.6.2 docs/doctype.md
opulent-1.6.1 docs/doctype.md
opulent-1.6.0 docs/doctype.md
opulent-1.5.5 docs/doctype.md
opulent-1.5.4 docs/doctype.md
opulent-1.5.3 docs/doctype.md
opulent-1.5.2 docs/doctype.md
opulent-1.5.1 docs/doctype.md
opulent-1.5.0 docs/doctype.md
opulent-1.4.8 docs/doctype.md
opulent-1.4.7 docs/doctype.md
opulent-1.4.6 docs/doctype.md
opulent-1.4.5 docs/doctype.md
opulent-1.4.3 docs/doctype.md
opulent-1.4.2 docs/doctype.md
opulent-1.4.1 docs/doctype.md