Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oxwazz/html-by-examples


https://github.com/oxwazz/html-by-examples

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

source: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference

```

├── ✅ href
│ ├── ✅ tel:
│ ├── ✅ mailto:
│ ├── ✅ sms:
│ └── ✅ javascript:
├── target
│ ├── ✅ _blank
│ ├── ✅ _self
│ ├── ❓ _parent
│ ├── ❓ _top
│ └── ❓ _unfencedTop
├── ✅ download
├── charset
├── coords
├── name
├── rev
├── shape
├── type
├── ✅ ping
├── hreflang
├── referrerpolicy
│ ├── no-referrer
│ ├── no-referrer-when-downgrade
│ ├── origin
│ ├── origin-when-cross-origin
│ ├── same-origin
│ ├── strict-origin
│ ├── strict-origin-when-cross-origin
│ └── unsafe-url
├── rel
└── attributionsrc (EXPERIMENTAL)

└── ✅ title
(DEPRECATED)




├── ✅ href
├── target
│ ├── ✅ _blank
│ ├── ✅ _self
│ ├── ❓ _parent
│ ├── ❓ _top

├── (global attributes)
└── ✅ dir: auto
├── ✅ auto
├── rtl
└── ltr

├── (global attributes)
└── dir
├── ✅ rtl
└── ✅ ltr
(DEPRECATED)
└── (global attributes)


├── (global attributes)
└── ✅ cite

├── onafterprint
├── onbeforeprint
├── onbeforeunload
├── onblur
├── onerror
├── onfocus
├── onhashchange
├── onlanguagechange
├── onload
├── onmessage
├── onmessageerror
├── onoffline
├── ononline
├── onpageswap
├── onpagehide
├── onpagereveal
├── onpageshow
├── onpopstate
├── onresize
├── onrejectionhandled
├── onstorage
├── onunhandledrejection
├── onunload
├── alink (DEPRECATED)
├── background (DEPRECATED)
├── bgcolor (DEPRECATED)
├── bottommargin (DEPRECATED)
├── leftmargin (DEPRECATED)
├── link (DEPRECATED)
├── rightmargin (DEPRECATED)
├── text (DEPRECATED)
├── topmargin (DEPRECATED)
└── vlink (DEPRECATED)

(good for writing poem / address, if paragrah using p instead of br)
├── (global attributes)
└── clear (DEPRECATED)

├── (global attributes)
├── autofocus
├── command (EXPERIMENTAL)
│ ├── "show-modal"
│ ├── "close"
│ ├── "show-popover"
│ ├── "hide-popover"
│ ├── "toggle-popover"
│ └── Custom values
├── commandfor (EXPERIMENTAL)
├── disabled
├── formaction
├── formenctype
│ ├── application/x-www-form-urlencoded
│ ├── application/x-www-form-urlencoded
│ └── text/plain
├── formmethod
│ ├── post
│ ├── get
│ └── dialog
├── formnovalidate
├── formtarget
│ ├── _self
│ ├── _blank
│ ├── _parent
│ └── _top
├── name
├── popovertarget
├── popovertargetaction
│ ├── "hide"
│ ├── "show"
│ └── "toggle"
├── type
│ ├── submit
│ ├── reset
│ └── ✅ button
└── value
```