Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oxwazz/html-by-examples
https://github.com/oxwazz/html-by-examples
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/oxwazz/html-by-examples
- Owner: oxwazz
- Created: 2024-11-21T03:05:27.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-21T07:23:13.000Z (about 2 months ago)
- Last Synced: 2024-11-21T07:28:42.975Z (about 2 months ago)
- Language: HTML
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
source: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference
✅
✅✅
✅
├── ✅ 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
```