Skip to main content

Kamus HTML 5 - Extended (HTML Sheet Dictionary)

Dipostingan sebelumnya sudah saya jabarkan tentang fungsi-fungsi HTML basic berupa kamus yang semoga bisa menjadi panduan kalian untuk mempelajari bahasa HTML dengan baik dan benar.

Kali ini saya akan membagikan kamus HTML yang lebih lengkap disertai penjelasan dan penggunaannya.

A

TagInfoAttributes
<!--  -->comment: comments are displayed in code only. Tag contents are not rendered in the browsernone
<!DOCTYPE>document type: defines which specification the document followsnone
<a>anchor: used to provide a link to another web resourcehref: destination resource of the hyperlink hreflang: gives the language of the linked resource media: describes for which media the target docu- ment was designed
ping: gives the URLs of the resources that are interested in being notified if the user follows the hyperlink
rel: relationship between the document containing the hyperlink and the destination resource [alternate | archives | author | bookmark | contact | external | feed | first | help | icon | index | last | license | next | nofollow | noreferrer | pingback | prefetch | prev | search | stylesheet | sidebar | tag | up]
target: gives the name of the browsing context that will be used [_blank | _parent | _self | _top]
type: gives the MIME type of the linked resource
<abbr>abbreviation: an abbreviation or acronym, optionally with its expansionglobal attributes**
<address>address element: represents the contact information for its nearest article or body element ancestorglobal attributes**
<area>area: either a hyperlink with some text and a corresponding area on an image map, or a dead area on an image mapalt: alternate text for the area
cords: coordinates for the clickable area
href: destination resource of the hyperlink
hreflang: gives the language of the linked resource
media: describes for which media the target document was designed
ping: gives the URLs of the resources that are interested in being notified if the user follows the hyperlink
rel: relationship between the document containing the hyperlink and the destination resource [alternate | archives | author | bookmark | contact | external | feed | first | help | icon | index | last | license | next | nofollow | noreferrer | sponsored | ugc | pingback | prefetch | prev | search | stylesheet | sidebar | tag | up]
shape: defines the shape of the area [default | rect | rectangle | circ | circle | poly | polygon]
target: gives the name of the browsing context that will be used [_blank | _parent | _self | _top]
type: gives the MIME type of the linked resource
<article>article element: a section of a page that consists of a composition that forms an independent   part of a document, page, or siteglobal attributes**
<aside>aside element: a section of a page that consists of content that is tangentially related to the content around the aside element, and which could be considered separate from that contentglobal attributes**
<audio>sound content: represents a sound or audio streamautobuffer: determines if the audio will be buffered [autobuffer]
autoplay: determine if the audio will automatically play [autoplay]
controls: indicates that the author has not provided a scripted controller and would like the user agent to provide its own set of controls [controls]
loop: sets whether the audio will start once the end is reached [loop]
src: URL of the audio to play

B

TagInfoAttributes
<b>bold text: creates text that will be made boldglobal attributes**
<base>base element: base URL for all the page linkshref: URL to use as the base URL for links in the page
target: sets the base target for links in the page [_blank | _parent | _self | _top]
<bb>browser button: a user agent command that the user can invoketype: indicates the kind of command [makeapp]
<bdo>bdo element: represents explicit text directionality formatting control for its childrendir: direction override [ltr | rtl]
<blockquote>block quote element: a section that is quoted from another sourcecite: URL of the origin of the quote
<body>body element: main content of the documentglobal attributes**
<br>break: inserts a single line breakglobal attributes**
<button>button: a button page elementautofocus: indicate that a control is to be focused as soon as the page is loaded [autofocus]
disabled: prevents the button from being pressed [disabled]
form: used to explicitly associate the button ele- ment with its form owner
formaction: URL that specifies a form processing agent
formenctype: specifies the content type used to submit the form to the server [application/x-www- form-urlencoded | multipart/form-data | text/plain]
  formmethod: which HTTP method will be used to submit the forms data [get | post | put | delete]
formnovalidate: indicate whether the form is to be validated during submission [formnovalidate]
formtarget: gives the target when the form is submitted [_blank | _parent | _self | _top]
name: elements name
type: controls the behavior of the button when it is activated [submit | reset | button]
value: gives the element's value for the purposes of form submission

C

TagInfoAttributes
<canvas>canvas element: a resolution- dependent bitmap canvas, which can be used for rendering graphs, game graphics, or other visual images on the flyheight: height of the canvas in pixels - default is 150
width: width of the canvas in pixels - default is 300
<caption>table caption: the title of the table that is its parent, if it has a parent and that is a table ele- ment.global attributes**
<cite>citation: represents the title of a workglobal attributes**
<code>computer code text: represents a fragment of computer code. This could be an XML element name, a filename, a computer program, or any other string that a computer would recognize.global attributes**
<col>column: defines the attribute values for one or more columns in a table.  Used inside of a table or colgroupspan: number of columns the tag should span
<colgroup>column group: a group of one or more columns in the table that is its parent, if it has a parent and that is a table ele- mentspan: number of columns the tag should span
<command>command button: a command that the user can invoke (like radio button or checkbox)type: Specifies the type of command [checkbox | command | radio]
label: gives the name of the command, as shown to the user
icon: a URL to  a picture that represents the com- mand
disabled: prevents the command from being executed [disabled]
checked: Determines if the command is checked by default [checked]
radiogroup: gives the name of the group of com- mands that will be toggled when the command itself is toggled
title: gives a hint describing the command, which might be shown to the user to help them

D

TagInfoAttributes
<datagrid>datagrid element: an interactive representation of tree, list,disabled: defines whether the list is selectable [disabled]
<datalist>dropdown list: a set of option elements that represent predefined options for other controlsglobal attributes**
<dd>definition description: description, definition, or value, part of a term-description group in a description list (dl element), and the discourse, or quote, part in a conversation (dialog element)global attributes**
<del>deleted text: represents a removal from the documentcite: a URL used to specify the address of a document that explains the change
datetime: used to specify the time and date of the change
<details>details element: represents additional information or controls which the user can obtain on demandopen: indicates whether the details are to be shown to the user [open]
<dialog>dialog element: represents a conversation, meeting minutes, a chat transcript, a dialog in a screenplay, an instant message log, or some other construct in which different players take  turnsglobal attributes**
<div>document block: creates a block level element with no special meaningglobal attributes**
<dfn>definition term: the defining instance of a termtitle: the exact value of the term being defined
<dl>definition list: an association list consisting of zero or more name value groups (a description list). Each group must consist of one or more names (dt elements) followed by one or more values (dd elements)global attributes**
<dt>definition term: the term, or name, part of a term description group in a description list (dl element), and the talker, or speaker, part of a talker discourse pair in a conversation (dialog element)global attributes**

E

TagInfoAttributes
<em>emphasized text: represents stress emphasis of its contents.global attributes**
<embed>embed element: an external (typically non-HTML) applica- tion or interactive contentsrc: URL of the resource being embedded
type: gives the MIME type of the plugin to instantiate
height: height of the embedded content  in pixels
width: width of the embedded content in pixels

F

TagInfoAttributes
<fieldset>fieldset element: a set of form controls grouped under a common namedisabled: controls whether all the form control descendants are disabled [disabled]
form: used to explicitly associate the fieldset element with its form owner
name: gives the name of the form control
<figure>figure element: some flow content, optionally with a caption, that is self-contained and is typically referenced as a single unit from the main flow of the documentglobal attributes**
<footer>footer element: represents a footer for the section it applies toglobal attributes**
<form>form element: represents a collection of form-associated elements, some of which can represent editable values that can be submitted to a server for processingaccept-charset: gives the character encodings that are to be used for the submission
action: URL that specifies a form processing agent
autocomplete: determines if form elements will have their autocomplete turned on or off by default [on | off]
enctype: specifies the content type used to submit the form to the server [application/x-www-form- urlencoded | multipart/form-data | text/plain]
method: which HTTP method will be used to submit the forms data [get | post | put | delete]
name: elements name
novalidate: indicate whether the form is to be validated during submission [novalidate]
target: gives the target when the form is submitted [_blank | _parent | _self | _top]

H

TagInfoAttributes
<h1> to <h6>headers (1-6): represent headings for their sections. elements have a rank given by the number in their nameglobal attributes**
<head>head element: contains information about the documentnone
<header>header element: represents a group of introductory or navigational aidsglobal attributes**
<hgroup>heading group: used to group a set of h1–h6 elements when the heading has multiple levels, such as subheadings, alternative titles, or taglinesglobal attributes**
<hr>horizontal rule: creates a horizontal rule (line)global attributes**
<html>html document: root of an HTML document.manifest: a URL to the address of the document's application cache manifest

I

TagInfoAttributes
<i>italic text: indicates the text is to be rendered with empha- sisglobal attributes**
<iframe>inline frame: represents a nested browsing windowsrc: URL of a page that the nested browsing context is to contain
name: elements name
sandbox: enables a set of extra restrictions on any content hosted by the iframe [allow-same-origin | allow-forms | allow-scripts]
seamless: indicates whether the iframe element's browsing context is to be rendered in a manner that makes it appear to be part of the containing document [seamless]
height: height of the frame in pixels
width: width of the frame in pixels
<img>image: represents an imagealt: text to display if the image can not
src: a URL to the image file
usemap: name of the map to use for the image
ismap: provides access to a server-side image map height: height of the image in pixels
width: width of the image in pixels
<input>input field: a typed data field, usually with a form control to allow the user to edit the dataAttributes are dependant upon input type accept: specified to provide user agents with a hint of what file types the server will be able to accept
alt: provides the textual label for the alternative button for users and user agents who cannot use the image
autocomplete: determines if the data is considered sensitive and if autocomplete will be used [on | off | default]
autofocus: determines if the input will get focus when a page loads [autofocus]
checked: determines if the input will be checked by default [checked]
disabled: prevents the input from being pressed [disabled]
form: used to explicitly associate the button ele- ment with its form owner
formaction: URL that specifies a form processing agent
formenctype: specifies the content type used to submit the form to the server [application/x-www- form-urlencoded | multipart/form-data | text/plain]
 formmethod: which HTTP method will be used to submit the forms data [get | post | put | delete]
formnovalidate: indicate whether the form is to be validated during submission [formnovalidate]
formtarget: gives the target when the form is submitted [_blank | _parent | _self | _top]
height: height of the input in pixels
list: used to identify an element that lists prede- fined options suggested to the user
max and max: indicate the allowed range of values for the element
maxlength: controls the maxlength of the input to a control
multiple: indicates whether the user is to be allowed to specify more than one value [multiple]
name: elements name
pattern: specifies a regular expression against which the control's value is to be checked
placeholder: a short hint intended to aid the user with data entry
readonly: determines if the control is readonly [readonly]
required: determines if the input is required before the form submits [required]
size: gives the number of characters that, in a visual rendering, the user agent is to allow the user to see while editing
src: URL to an image (image button)
step: indicates the granularity that is expected (and required) of the value
type: controls the data type (and associated control) of the element [hidden | text | search | tel | url | email | password | datetime | date | month | week | time | datetime-local | number | range | color | checkbox | radio | file | submit | image | reset | button]
value: sets the element's value
width: width of the input in pixels
<ins>inserted text: an addition to the documentcite: a URL used to specify the address of a document that explains the change
datetime: used to specify the time and date of the change

K

TagInfoAttributes
<kbd>keyboard text: user input (typically keyboard input, although it may also be used to represent other input, such as voice commands)global attributes**

L

TagInfoAttributes
<label>label: caption in a user interfacefor: specified to indicate a form control with which the caption is to be associated
<legend>fieldset title: sets the title of a fieldset elementglobal attributes**
<li>list item: represents a list item of an Ordered (OL) or Unordered list (UL)value: used in an Ordered List (OL) to set the display value
<link>resource link: allows authors to link their document to other resourceshref: destination resource of the hyperlink
rel: relationship between the document containing the hyperlink and the destination resource [alternate | archives | author | bookmark | contact | external | feed | first | help | icon | index | last | license | next | nofollow | noreferrer | pingback | prefetch | prev | search | stylesheet | sidebar | tag | up]
media: describes for which media the target docu- ment was designed
hreflang: gives the language of the linked resource
type: gives the MIME type of the linked resource
sizes: gives the sizes of icons for visual media.

M

TagInfoAttributes
<mark>marked text: a run of text in one document marked or high- lighted for reference purposes, due to its relevance in another context.global attributes**
<map>image map: in conjunction with any area element descendants, defines an image mapname: gives the map a name so that it can be referenced
<menu>menu list: a list of commandslabel: sets a visible label for the menu
type: indicates the kind of menu being declared [context | toolbar | list]
<meta>meta information: sets meta information for the page (like title, description)charset: specifies the character encoding used by the document
content: sets the value of the document metadata http-equiv: sets a pragma directive [content- language | content-type | default-style | refresh]
name: set the name of the meta information
<meter>meter element: scalar measurement within a known range, or a fractional valuehigh: specifies the range that is considered to be the "high" part
low: specifies the range that is considered to be the "low" part
min: specifies the lower boundary
max: specifies the  upper boundary
optimum: specifies the range that is considered to be the "optimum" part
value: current location within the range

N

TagInfoAttributes
<nav>navigation element: section of a page that links to other pages or to parts within the page: a section with navigation linksglobal attributes**
<noscript>noscript section: represents nothing if scripting is enabled, and represents its children if scripting is disabledglobal attributes**

O

TagInfoAttributes
<object>embedded object: an external resource, which, depending on the type of the resource, will either be treated as an image, as a nested browsing context, or as an external resource to be processed by a plugindata: specifies the address of the resource
name: valid browsing context name
usemap: name of the map to use for the image
form: form to associate the object with
type: gives the MIME type of the plugin to instantiate
height: height of the embedded content  in pixels
width: width of the embedded content in pixels
<ol>ordered list: list of items, where the items have been intentionally orderedstart: the ordinal value of the first list item reversed: indicates that the list is a descending list [reversed]
<optgroup>option group: a group of option elements with a common labeldisabled: disables all options in the group [disabled]
label: gives the name of the group, as shown to the user
<option>option element: an option in a select element or as part of a list of suggestions in a datalist elementdisabled: prevent any clicks on an option item [disabled]
label: provides a label for element
selected: determines if the option is selected by default [selected]
value: provides a value for element
<output>output element: the result of a calculationform: used to explicitly associate the output ele- ment with its form owner
for: allows an explicit relationship to be made between the result of a calculation and the elements that represent the values that went into the calculation or that influenced the calculation

P

TagInfoAttributes
<p>paragraph: creates a paragraphglobal attributes**
<param>parameter element: defines parameters for plugins invoked by object elements. It does not represent anything on its ownname: gives the name of the parameter.
value: gives the value of the parameter.
<pre>preformatted text: represents a block of preformatted textglobal attributes**
<progress>progress element: represents the completion progress of a task.max: specifies how much work the task requires in total
value: specifies how much of the task has been completed

Q

TagInfoAttributes
<q>short quotation: phrasing content quoted from another sourcecite: a URL of a page where the quote was taken from

R

TagInfoAttributes
<ruby>ruby annotations: allows one or more spans of phrasing content to be marked with ruby annotationsglobal attributes**
<rp>ruby text parentheses: can be used to provide parentheses around a ruby text component of a ruby annotationglobal attributes**
<rt>ruby text component: marks the ruby text component of a ruby annotationglobal attributes**
<samp>sample: sample output from a program or computing system.global attributes**

S

TagInfoAttributes
<script>script element: allows authors to include dynamic script and data blocks in their documentsasync: the script will be executed asynchronously, as soon as it is available [async]
type: gives the MIME type of the script or format of the data
defer: the script is executed when the page has finished parsing [defer]
src: gives the address of the external script resource to use
charset: specifies the character encoding of the external script resource
<section>section element: represents a generic document or application sectioncite: a URL of a page where the section was taken from
<select>selectable list: a control for selecting amongst a set of optionsautofocus: determines if the controls gets focus when the page loads [autofocus]
disabled: prevent the selection of an item [disabled]
form: form to associate the select with
multiple: allows the selection of multiple items [multiple]
size: gives the number of options to show to the user
<small>small text: small print or other side commentsglobal attributes**
<source>source element: allows authors to specify multiple media resources for media elements.media: gives the intended media type of the media resource
src: URL of the media resource
type: gives the MIME type of the source
<span>span: used for an inline elementglobal attributes**
<strong>strong: represents strong importance for its contentsglobal attributes**
<style>style definition: allows authors to embed style information in their documentsmedia: says which media the styles apply to
  type: gives the MIME type (default: text/css)
scoped: indicates that the styles are intended just for the subtree rooted at the style element's parent element [scoped]
<sub>subscript: subscript textglobal attributes**
<sup>superscript: superscript textglobal attributes**

T

TagInfoAttributes
<table>table element: represents data with more than one dimension, in the form of a tableglobal attributes**
<tbody>table body: represents a block of rows that consist of a body of data for a tableglobal attributes**
<td>table cell: represents a data cell in a tablecolspan: sets how many columns a cell will span rowspan: sets how many rows a cell will span headers: space separated list of ids corresponding to the th ids and give header information for the cell
<textarea>text area: a multiline plain text edit control for the element's raw valueautofocus: determines if the textarea gets focus when the page loads [autofocus]
cols: specifies the expected maximum number of characters per line
disabled: prevents entry of text [disabled]
form: form to associate the textarea with
readonly: control whether the text can be edited by the user or not [readonly]
required: will be required to enter a value before submitting the form [required]
rows: specifies the number of lines to show
maxlength: controls the maximum amount of characters which can be entered
placeholder: a hint intended to aid the user with data entry
wrap: defines how text is wrapped [soft | hard]
<tfoot>table footer: the block of rows that consist of the column summaries (footers) for a tableglobal attributes**
<th>table header: represents a header cell in a tablecolspan: determines how many columns a cell will span
rowspan: determines how many rows a cell will span
headers: space separated list of ids corresponding to the th ids and give header information for the cell
scope: determines where the cell provides its header information [col | colgroup | row | rowgroup]
<thead>table header: the block of rows that consist of the column labels (headers) for a tableglobal attributes**
<time>date/time: a precise date and / or a time in the Gregorian calendardatetime: date/time using the Gregorian calendar
<title>title element: sets the title of the documentnone
<tr>table row: a row of cells in a tableglobal attributes**

U

TagInfoAttributes
<ul>unordered list: a list of items, where the order of the items is not importantglobal attributes**

V

TagInfoAttributes
<var>variable: this could be an actual variable in a mathematical expression or programming contextglobal attributes**
<video>video element: a video or movieposter: URL of an image file that the user agent  can show while no video data is available
autobuffer: determines if the audio will be buffered [autobuffer]
autoplay: determine if the audio will automatically play [autoplay]
controls: indicates that the author has not provided a scripted controller and would like the user agent to provide its own set of controls [controls]
loop: sets whether the audio will start once the end is reached [loop]
src: URL of the audio to play
width: width of the video in pixels
height: height of the video in pixels

  • * Attributes : Daftar atribut khusus untuk tag. Atribut yang tidak berlaku lagi (hanya html4) tidak dicantumkan
  • ** Global Attributes : class | contenteditable | contextmenu | dir | draggable | id | irrelevant | lang | ref | registrationmark | tabindex | template | title
  • Untuk mengetahui bahasa dasar HTML, silahkan kunjungi Kamus HTML 5 dipostingan sebelumnya.

    DMCA.com Protection Status
    Comment Policy: Silahkan tuliskan komentar Anda yang sesuai dengan topik postingan halaman ini. Komentar yang berisi tautan tidak akan ditampilkan sebelum disetujui.
    Buka Komentar