From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/nl/web/html/element/a/index.html | 313 ++++++++++++++++++++++++ files/nl/web/html/element/abbr/index.html | 150 ++++++++++++ files/nl/web/html/element/b/index.html | 82 +++++++ files/nl/web/html/element/div/index.html | 146 +++++++++++ files/nl/web/html/element/figcaption/index.html | 123 ++++++++++ files/nl/web/html/element/html/index.html | 113 +++++++++ files/nl/web/html/element/index.html | 110 +++++++++ files/nl/web/html/element/marquee/index.html | 203 +++++++++++++++ files/nl/web/html/element/p/index.html | 113 +++++++++ 9 files changed, 1353 insertions(+) create mode 100644 files/nl/web/html/element/a/index.html create mode 100644 files/nl/web/html/element/abbr/index.html create mode 100644 files/nl/web/html/element/b/index.html create mode 100644 files/nl/web/html/element/div/index.html create mode 100644 files/nl/web/html/element/figcaption/index.html create mode 100644 files/nl/web/html/element/html/index.html create mode 100644 files/nl/web/html/element/index.html create mode 100644 files/nl/web/html/element/marquee/index.html create mode 100644 files/nl/web/html/element/p/index.html (limited to 'files/nl/web/html/element') diff --git a/files/nl/web/html/element/a/index.html b/files/nl/web/html/element/a/index.html new file mode 100644 index 0000000000..3c3fc3a0b8 --- /dev/null +++ b/files/nl/web/html/element/a/index.html @@ -0,0 +1,313 @@ +--- +title: +slug: Web/HTML/Element/a +translation_of: Web/HTML/Element/a +--- +

Het HTML <a> element (of anker element) maakt een hyperlink naar andere web pagina's, bestanden, lokaties binnen dezelfde pagina, email-adressen of een andere URL.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Content categorieënFlow content, phrasing content, interactive content, tastbare content.
Toegestane contentTransparent, bevat ofwel flow content ( exclusief interactive content) of phrasing content.
Tag verzuim{{no_tag_omission}}
Toegestane oudersIeder element dat phrasing content accepteert, of ieder element dat  flow content accepteert, maar altijd  <a> elementen uitsluit ( volgens het logische principe van symmetrie dat als een <a> tag, als ouder, geen  interactive content kan bevatten, deze <a> content dus niet deze <a> tag als zijn ouder kan hebben).
Toegestane ARIA roles{{ARIARole("button")}}, {{ARIARole("checkbox")}}, {{ARIARole("menuitem")}}, {{ARIARole("menuitemcheckbox")}}, {{ARIARole("menuitemradio")}}, {{ARIARole("option")}}, {{ARIARole("radio")}}, {{ARIARole("switch")}}, {{ARIARole("tab")}}, {{ARIARole("treeitem")}}
DOM interface{{domxref("HTMLAnchorElement")}}
+ +

Attributes

+ +

This element's attributes include the global attributes.

+ +
+
{{htmlattrdef("download")}} {{HTMLVersionInline(5)}}
+
This attribute instructs browsers to download a URL instead of navigating to it, so the user will be prompted to save it as a local file. If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want). There are no restrictions on allowed values, though / and \ are converted to underscores. Most file systems limit some punctuation in file names, and browsers will adjust the suggested name accordingly. +
Notes: +
    +
  • This attribute only works for same-origin URLs.
  • +
  • This attribute can be used with blob: URLs and data: URLs to download content generated by JavaScript, such as pictures created in an image-editor Web app.
  • +
  • If the HTTP header Content-Disposition: gives a different filename than this attribute, the HTTP header takes priority over this attribute.
  • +
  • If Content-Disposition: is set to inline, Firefox prioritizes Content-Disposition, like the filename case, while Chrome prioritizes the download attribute.
  • +
+
+
+
{{htmlattrdef("href")}}
+
Contains a URL or a URL fragment that the hyperlink points to.
+
A URL fragment is a name preceded by a hash mark (#), which specifies an internal target location (an ID of an HTML element) within the current document. URLs are not restricted to Web (HTTP)-based documents, but can use any protocol supported by the browser. For example, file:, ftp:, and mailto: work in most browsers.
+
This attribute may be omitted (as of HTML5) to create a placeholder link. A placeholder link resembles a traditional hyperlink, but does not lead anywhere. +
+

Note: You can use href="#top" or the empty fragment href="#" to link to the top of the current page. This behavior is specified by HTML5.

+
+
+
{{htmlattrdef("hreflang")}}
+
This attribute indicates the human language of the linked resource. It is purely advisory, with no built-in functionality. Allowed values are determined by BCP47.
+
{{htmlattrdef("ping")}}
+
Contains a space-separated list of URLs to which, when the hyperlink is followed, {{HTTPMethod("POST")}} requests with the body PING will be sent by the browser (in the background). Typically used for tracking.
+
{{htmlattrdef("referrerpolicy")}} {{experimental_inline}}
+
Indicates which referrer to send when fetching the URL: +
    +
  • 'no-referrer' means the Referer: header will not be sent.
  • +
  • 'no-referrer-when-downgrade' means no Referer: header will be sent when navigating to an origin without HTTPS. This is the default behavior.
  • +
  • 'origin' means the referrer will be the origin of the page, not including information after the domain.
  • +
  • 'origin-when-cross-origin' meaning that navigations to other origins will be limited to the scheme, the host and the port, while navigations on the same origin will include the referrer's path.
  • +
  • 'unsafe-url' means the referrer will include the origin and path, but not the fragment, password, or username. This is unsafe because it can leak data from secure URLs to insecure ones.
  • +
+
+
{{htmlattrdef("rel")}}
+
Specifies the relationship of the target object to the link object. The value is a space-separated list of link types.
+
{{htmlattrdef("target")}}
+
Specifies where to display the linked URL. It is a name of, or keyword for, a browsing context: a tab, window, or <iframe>. The following keywords have special meanings: +
    +
  • _self: Load the URL into the same browsing context as the current one. This is the default behavior.
  • +
  • _blank: Load the URL into a new browsing context. This is usually a tab, but users can configure browsers to use new windows instead.
  • +
  • _parent: Load the URL into the parent browsing context of the current one. If there is no parent, this behaves the same way as _self.
  • +
  • _top: Load the URL into the top-level browsing context (that is, the "highest" browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this behaves the same way as _self.
  • +
+ +
+

Note: When using target, consider adding rel="noopener noreferrer" to avoid exploitation of the window.opener API.

+
+
+
{{htmlattrdef("type")}}
+
Specifies the media type in the form of a {{Glossary("MIME type")}} for the linked URL. It is purely advisory, with no built-in functionality.
+
+ +

Obsolete

+ +
+
{{htmlattrdef("charset")}} {{obsoleteGeneric("inline","HTML5")}}
+
This attribute defined the character encoding of the linked URL. The value should be a space- and/or comma-delimited list of character sets defined in RFC 2045. The default value is ISO-8859-1. +
+

Usage note: This attribute is obsolete in HTML5 and should not be used by authors. To achieve its effect, use the HTTP Content-Type: header on the linked URL.

+
+
+
{{htmlattrdef("coords")}} {{HTMLVersionInline(4)}} only, {{obsoleteGeneric("inline","HTML5")}}
+
For use with the below shape attribute, this attribute used a comma-separated list of numbers to define the coordinates of the link on the page.
+
{{htmlattrdef("name")}} {{HTMLVersionInline(4)}} only, {{obsoleteGeneric("inline","HTML5")}}
+
This attribute was required for anchors defining a possible target location within a page. In HTML 4.01, id and name could be used simultaneously on a <a> element as long as they have identical values. +
+

Usage note: This attribute is obsolete in HTML5, use the global attribute id instead.

+
+
+
{{htmlattrdef("rev")}} {{HTMLVersionInline(4)}} only, {{obsoleteGeneric("inline","HTML5")}}
+
This attribute specified a reverse link, the inverse relationship of the rel attribute. It was deprecated for being very confusing.
+
{{htmlattrdef("shape")}} {{HTMLVersionInline(4)}} only, {{obsoleteGeneric("inline","HTML5")}}
+
This attribute was used to define a region for hyperlinks to create an image map. The values are circle, default, polygon, and rect. The format of the coords attribute depends on the value of shape. For circle, the value is x,y,r where x and y are the pixel coordinates for the center of the circle and r is the radius value in pixels. For rect, the coords attribute should be x,y,w,h. The x,y values define the upper-left-hand corner of the rectangle, while w and h define the width and height respectively. A value of polygon for shape requires x1,y1,x2,y2,... values for coords. Each of the x,y pairs defines a point in the polygon, with successive points being joined by straight lines and the last point joined to the first. The value default for shape requires that the entire enclosed area, typically an image, be used. +
Note: Use the usemap attribute for the {{HTMLElement("img")}} element and the associated {{HTMLElement("map")}} element to define hotspots instead of the shape attribute.
+
+
+ +

Examples

+ +

Linking to an external location

+ +
<!-- anchor linking to external file -->
+<a href="https://www.mozilla.com/">
+External Link
+</a>
+
+ +

Result

+ +

External Link

+ +

Linking to another section on the same page

+ +
<!-- links to element on this page with id="attr-href" -->
+<a href="#attr-href">
+Description of Same-Page Links
+</a>
+
+ +

Result

+ +

Description of Same Page Links

+ +

Creating a clickable image

+ +

This example uses an image to link to the MDN home page. The home page will open in a new browsing context, that is, a new page or a new tab.

+ +
<a href="https://developer.mozilla.org/en-US/" target="_blank">
+  <img src="https://mdn.mozillademos.org/files/6851/mdn_logo.png"
+       alt="MDN logo" />
+</a>
+
+ +

Result

+ +
+

{{EmbedLiveSample("Creating_a_clickable_image", "320", "64")}}

+
+ + + +

It's common to create links that open in the user's email program to allow them to send a new message. This is done with a mailto: link. Here's a simple example:

+ +
<a href="mailto:nowhere@mozilla.org">Send email to nowhere</a>
+ +

Result

+ +

Send email to nowhere

+ +

For additional details about the mailto URL scheme, such as including the subject, body, or other predetermined content, see Email links or {{RFC(6068)}}.

+ + + +

Offering phone links is helpful for users viewing web documents and laptops connected to phones.

+ +
<a href="tel:+491570156">+49 157 0156</a>
+ +

For additional details about the tel URL scheme, see {{RFC(3966)}}.

+ +

Using the download attribute to save a <canvas> as a PNG

+ +

If you want to let users download an HTML {{HTMLElement("canvas")}} element as an image, you can create a link with a download attribute and the canvas data as a file URL:

+ +
var link = document.createElement('a');
+link.textContent = 'download image';
+
+link.addEventListener('click', function(ev) {
+    link.href = canvas.toDataURL();
+    link.download = "mypainting.png";
+}, false);
+
+document.body.appendChild(link);
+ +

You can see this in action at jsfiddle.net/codepo8/V6ufG/2/.

+ +

Notes

+ +

HTML 3.2 defines only the name, href, rel, rev, and title attributes.

+ +

Accessibility recommendations

+ +

Anchor tags are often abused with the onclick event to create pseudo-buttons by setting href to "#" or "javascript:void(0)" to prevent the page from refreshing. These values cause unexpected behavior when copying/dragging links, opening links in a new tabs/windows, bookmarking, and when JavaScript is still downloading, errors out, or is disabled. This also conveys incorrect semantics to assistive technologies (e.g., screen readers). In these cases, it is recommended to use a {{HTMLElement("button")}} instead. In general you should only use an anchor for navigation using a proper URL. 

+ +

Clicking and focus

+ +

Whether clicking on an {{HTMLElement("a")}} causes it to become focused varies by browser and OS.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Does clicking on an {{HTMLElement("a")}} give it focus?
Desktop BrowsersWindows 8.1OS X 10.9
Firefox 30.0YesYes
Chrome ≥39
+ (Chromium bug 388666)
YesYes
Safari 7.0.5N/AOnly when it has a tabindex
Internet Explorer 11YesN/A
Presto (Opera 12)YesYes
+ + + + + + + + + + + + + + + + + + + + +
Does tapping on an {{HTMLElement("a")}} give it focus?
Mobile BrowsersiOS 7.1.2Android 4.4.4
Safari MobileOnly when it has a tabindexN/A
Chrome 35???Only when it has a tabindex
+ +

Specifications

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Referrer Policy', '#referrer-policy-delivery-referrer-attribute', 'referrer attribute')}}{{Spec2('Referrer Policy')}}Added the referrer attribute.
{{SpecName('HTML WHATWG', 'semantics.html#the-a-element', '<a>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'textlevel-semantics.html#the-a-element', '<a>')}}{{Spec2('HTML5 W3C')}} 
{{SpecName('HTML4.01', 'struct/links.html#h-12.2', '<a>')}}{{Spec2('HTML4.01')}} 
+ +

Browser compatibility

+ + + +

{{Compat("html.elements.a")}}

+ +

See also

+ + + +
{{HTMLRef}}
diff --git a/files/nl/web/html/element/abbr/index.html b/files/nl/web/html/element/abbr/index.html new file mode 100644 index 0000000000..a13e5cb177 --- /dev/null +++ b/files/nl/web/html/element/abbr/index.html @@ -0,0 +1,150 @@ +--- +title: +slug: Web/HTML/Element/abbr +tags: + - Element + - HTML + - HTML tekst-niveau semantiek + - Referentie + - Web + - abbr +translation_of: Web/HTML/Element/abbr +--- +

Samenvatting

+ +

Het HTML Abbreviation element (<abbr>) geeft de mogelijkheid om een afkorting aan te geven en geeft optioneel de mogelijkheid voor het geven van een volledige omschrijving. Indien het title attribuut wordt opgegeven in het element, hoort deze de volledige omschrijving te bevatten en niets anders.

+ +
<p>Ik kan <abbr title="Hypertext Markup Language">HTML</abbr></p>
+ +

Bekijk meer verdiepende voorbeelden in het artikel Hoe markeer je afkortingen om ze te verduidelijken.

+ + + + + + + + + + + + + + + + + + + + +
DOM Interface{{domxref("HTMLElement")}}
Inhoud categorieënFlow content, phrasing content, palpable content
Toegestaande inhoudPhrasing content
Toegstaande parent elementenElk element dat phrasing content toestaat.
+ +

Attributen

+ +

Dit element bevat alleen de mogelijkheid voor gebruik van de globale attributen.

+ +

Gebruik het {{htmlattrxref("title")}} attribuut om de volledige omschrijving van de afkorting op te geven. Veel user agents geven de inhoud van dit attribuut namelijk weer als een tooltip.

+ +
+

Note: In talen met grammaticale nummers (vooral talen met meer dan twee nummers, zoals Arabisch) gebruik je hetzelfde in het title attribuut als in het <abbr> element.

+
+ +

Specificaties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificatiesStatusCommentaar
{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-abbr-element', '<abbr>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-abbr-element', '<abbr>')}}{{Spec2('HTML5 W3C')}} 
{{SpecName('HTML4.01', 'struct/text.html#edef-ABBR', '<abbr>')}}{{Spec2('HTML4.01')}} 
+ +

Browser compatibiliteit

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support2.0{{CompatGeckoDesktop(1.0)}} [1]7.01.3{{CompatVersionUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
+
+ +

[1] Up to Gecko 1.9.2 (Firefox 3.6), Firefox implemented the {{domxref("HTMLSpanElement")}} interface for this element instead of the {{domxref("HTMLElement")}} interface.

+ +

Standaard opmaak

+ +

Het doel van dit element is puur voor het gemak van de auteur en alle browsers geven het standaard inline weer ({{cssxref('display')}}: inline) , toch verschilt de opmaak per browser:

+ + + +

Zie ook

+ + + +
{{HTMLRef}}
diff --git a/files/nl/web/html/element/b/index.html b/files/nl/web/html/element/b/index.html new file mode 100644 index 0000000000..bc24fbfca1 --- /dev/null +++ b/files/nl/web/html/element/b/index.html @@ -0,0 +1,82 @@ +--- +title: b +slug: Web/HTML/Element/b +translation_of: Web/HTML/Element/b +--- +

Samenvatting

+ +

Het HTML B-element (<b>) representeert een stuk tekst dat qua stijl verschilt van gewone tekst, maar zonder dat het enig belang of relevantie toevoegt. Het is gebruikelijk dat het element wordt toegepast om sleutelwoorden in een samenvatting of productnamen in een recensie vetgedrukt weer te geven. Het element voor datzelfde ook gebruikt voor andere tekst die normaal vetgedrukt wordt weergegeven. Een laatste voorbeeld is het gebruik om de eerste zin van een artikel vetgedrukt te laten zien.

+ +
+

Opmerkingen bij het gebruik:

+ +
    +
  • Verwar het <b> element niet met de elementen {{ HTMLElement("strong") }}, {{ HTMLElement("em") }} of {{ HTMLElement("mark") }}. Het <strong> element geeft tekst weer met een bepaald belang; <em> legt enige nadruk op de tekst en <mark> geeft tekst aan met een zekere relevantie. Het <b> element geeft geen betekenis mee; gebruik het daarom alleen als de andere elementen niet passen.
  • +
  • Gebruik het <b> element niet om koppen aan te geven; voor dit doel kunt u de elementen {{ HTMLElement("h1") }} tot en met {{ HTMLElement("h6") }} gebruiken.
  • +
  • Houd er rekening mee dat <b> tags niet per sé vetgedrukt weergegeven hoeven te worden, omdat de stijl kan worden aangepast met stijlbladen.
  • +
  • Het is een goed idee om <b> tags een class attribuut mee te geven, zodat de stijl van verschillende <b>-tags in een document kan worden aangepast met stijlbladen zonder de HTML-code te wijzigen. Bijvoorbeeld <b class="artikelEersteAlinea"> voor de eerste alinea (Engels: paragraph) van een artikel.
  • +
  • Oorspronkelijk was het <b> element bedoeld om tekst vetgedrukt te maken. Omdat opmaaktags sinds HTML 4 afgekeurd ("deprecated") zijn, is de betekenis van het <b>-element echter veranderd.
  • +
+
+ +

Gebruikscontext

+ + + + + + + + + + + + + + + + + + + + + + + + +
InhoudscategorieënFlow content, phrasing content
Toegestane inhoudPhrasing content
Weg te laten tagsGeen, zowel de begin- als eindtag zijn verplicht
Toegestane ouderelementenElk element dat phrasing content toestaat
Normatief documentHTML5, section 4.6.16 (HTML4.01, section 15.2.1)
+ +

Attributen

+ +

Zoals alle andere HTML-elementen heeft dit element de globale attributen.

+ +

DOM Interface

+ +

Dit element implementeert de HTMLElement interface.

+ +
Opmerking betreffende implementatie: Tot en met Gecko 1.9.2 implementeert Firefox de HTMLSpanElement interface voor dit element.
+ +

Voorbeeld

+ +
<p>
+  Dit artikel beschrijft verschillende <b>tekst-niveau</b> elementen. Het verklaart hun gebruik in een <b>HTML-document</b>.
+</p>
+Sleutelwoorden zijn weergegeven met de standaardopmaak van het &lt;b> element, normaal gesproken is dat vetgedrukt.
+
+ +

Resultaat

+ +

Dit artikel beschrijft verschillende tekst-niveau elementen. Het verklaart hun gebruik in een HTML-document.

+ +

Sleutelwoorden zijn weergegeven met de standaardopmaak van het <b> element, normaal gesproken is dat vetgedrukt.

+ +

Zie ook

+ + + +

{{ languages( { "en": "en/HTML/Element/b", "de": "de/HTML/Element/b", "pl": "pl/HTML/Element/b"} ) }}

+ +{{HTMLRef}} diff --git a/files/nl/web/html/element/div/index.html b/files/nl/web/html/element/div/index.html new file mode 100644 index 0000000000..74a1240509 --- /dev/null +++ b/files/nl/web/html/element/div/index.html @@ -0,0 +1,146 @@ +--- +title:
+slug: Web/HTML/Element/div +tags: + - Element + - HTML + - HTML Flow + - HTML Groep + - Referentie + - Web +translation_of: Web/HTML/Element/div +--- +

{{HTMLRef}}

+ +

Het HTML <div> element is een algemene container voor flow content, en heeft geen specifieke betekenis.
+ Het kan gebruikt worden om elementen te groeperen voor stijl-doeleinden (doormiddel van een class of id), of omdat ze attribuutwaarden delen, zoals lang. Het mag alleen gebruikt worden als er geen alternatief semantisch element is (zoals {{HTMLElement("article")}} of {{HTMLElement("nav")}}).

+ + + + + + + + + + + + + + + + + + + + + + + + +
Content categoriesFlow content, palpable content.
Permitted contentFlow content.
Tag omission{{no_tag_omission}}
Permitted parent elementsAny element that accepts flow content.
DOM interface{{domxref("HTMLDivElement")}}
+ +

Attributen

+ +

Dit element bevat de 'global attributes'.

+ +

Het 'align' attribuut is verouderd; niet meer gebruiken.

+ +

Voorbeelden

+ +
<div>
+  <p>Een willekeurige tekst hier.</p>
+</div>
+
+ +

Resultaat

+ +

Een willekeurige tekst hier.

+ +

Specificaties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificatieStatusCommentaar
{{SpecName('HTML WHATWG', 'grouping-content.html#the-div-element', '<div>')}}{{Spec2('HTML WHATWG')}}Geen veranderingen sinds laatste snapshot.
{{SpecName('HTML5 W3C', 'grouping-content.html#the-div-element', '<div>')}}{{Spec2('HTML5 W3C')}}align verouderd
{{SpecName('HTML4.01', 'struct/global.html#h-7.5.4', '<div>')}}{{Spec2('HTML4.01')}} 
+ +

Browser compatibiliteit

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
Basis support1.0{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)IE PhoneOpera MobileSafari Mobile
Basis support{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
+
+ +

Bekijk ook

+ +
    +
  • Semantische sectie elementen: {{HTMLElement("section")}}, {{HTMLElement("article")}}, {{HTMLElement("nav")}}, {{HTMLElement("header")}}, {{HTMLElement("footer")}}
  • +
  • {{HTMLElement("span")}} element voor het stijlen van content
  • +
+ +
 
diff --git a/files/nl/web/html/element/figcaption/index.html b/files/nl/web/html/element/figcaption/index.html new file mode 100644 index 0000000000..e10953ea78 --- /dev/null +++ b/files/nl/web/html/element/figcaption/index.html @@ -0,0 +1,123 @@ +--- +title:
+slug: Web/HTML/Element/figcaption +translation_of: Web/HTML/Element/figcaption +--- +

{{HTMLRef}}

+ +

Het HTML <figcaption> element vertegenwoordigt een bijschrift/opschrift of een legende die bij een figure of afbeelding hoort en die de rest van de data omschrijft van het {{HTMLElement("figure")}} element,  wat zijn directe voorouder is.

+ +

Dit betekent dat  <figcaption> het eerste of het laatste element kan zijn binnen een {{HTMLElement("figure")}} blok. Ook is het HTML Figcaption Element optioneel. Indien dat niet het geval is dan zal het hoodelement van de figuur geen bijschrift/opschrift hebben.

+ + + + + + + + + + + + + + + + + + + + + + + + +
InhoudscategorieënGeen.
Toegestaande inhoudFlow content.
Tag omission{{no_tag_omission}}
Bovenliggende toegestaande elementenEen {{HTMLElement("figure")}} element; het<figcaption> element moet het eerste of het laatste child zijn.
DOM interface{{domxref("HTMLElement")}}
+ +

Attributen

+ +

Dit element bevat ook de  global attributes.

+ +

Voorbeelden

+ +

Ga naar de {{HTMLElement("figure")}} pagina voor voorbeelden van <figcaption>.

+ +

Specificaties

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('HTML WHATWG', 'grouping-content.html#the-figcaption-element', '<figcaption>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'grouping-content.html#the-figcaption-element', '<figcaption>')}}{{Spec2('HTML5 W3C')}} 
+ +

Browser compatibiliteit

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support8{{CompatGeckoDesktop("2.0")}}9.011.105.1
+
+ +
+ + + + + + + + + + + + + + + + + + + +
FeatureAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support3.0{{CompatGeckoMobile("2.0")}}9.011.05.1 (iOS 5.0)
+
+ +

Zie ook

+ +
    +
  • Het {{HTMLElement("figure")}} element.
  • +
diff --git a/files/nl/web/html/element/html/index.html b/files/nl/web/html/element/html/index.html new file mode 100644 index 0000000000..131593197a --- /dev/null +++ b/files/nl/web/html/element/html/index.html @@ -0,0 +1,113 @@ +--- +title: +slug: Web/HTML/Element/html +tags: + - Element + - HTML + - HTML root-element + - Naslagwerk + - Reference + - Referentie + - Web +translation_of: Web/HTML/Element/html +--- +

{{HTMLRef}}

+ +

Het <html>-element  representeert de 'root' (het element op het hoogste niveau) van een HTML-document. Er wordt daarom naar verwezen als het root-element. Alle andere elementen moeten nakomelingen zijn van dit element.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Content categoriesGeen.
Permitted contentEen {{HTMLElement("head")}}-element, gevolgd door een {{HTMLElement("body")}}-element.
Tag omission +

Het beginlabel mag worden weggelaten als het eerste object binnen het <html>-element geen commentaar is.
+ Het eindlabel mag worden weggelaten als het <html>-element niet direct wordt gevolgd door commentaar, en als het een {{HTMLElement("body")}}-element bevat dat niet leeg is of waarvan het beginlabel aanwezig is.

+
Permitted parentsAls het root-element van een document, of waar een fragment van een subdocument is toegestaan in een samengesteld document.
Permitted ARIA rolesGeen.
DOM interface{{domxref("HTMLHtmlElement")}}
+ +

Attributen

+ +

Dit element kan algemene attributen bevatten.

+ +
+
{{htmlattrdef("manifest")}} {{obsolete_inline}}
+
Specificeert de URI van een bronnenmanifest die bronnen aanduidt die lokaal moeten worden gecacht. Zie De application cache gebruiken voor details.
+
{{htmlattrdef("version")}} {{obsolete_inline}}
+
Specificeert de versie van de {{glossary("DTD", "documenttype-definitie")}} van HTML die het huidige document bestuurt. Dit attribuut is niet nodig, omdat het overbodig is naast de versieinformatie in de verklaring van het documenttype.
+
{{htmlattrdef("xmlns")}} 
+
Specificeert de Namespace van XML in het document. De standaardwaarde is "http://www.w3.org/1999/xhtml". Dit is vereist in documenten die worden verwerkt door XML-vewerkers, en is optioneel in text/html-documenten.
+
+ +

Voorbeeld

+ +
<!DOCTYPE html>
+<html>
+  <head>...</head>
+  <body>...</body>
+</html>
+
+ +

Specificaties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificatieStatusCommentaar
{{SpecName('HTML WHATWG', 'semantics.html#the-html-element', '<html>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'semantics.html#the-html-element', '<html>')}}{{Spec2('HTML5 W3C')}}Toegevoegde ondersteuning voor het manifest-attribuut (later afgeschaft).
+ Verouderd in het version-attribuut.
{{SpecName('HTML4.01', 'struct/global.html#h-7.3', '<html>')}}{{Spec2('HTML4.01')}}Verouderd in het version-attribuut.
+ +

Browsercompatibiliteit

+ + + +

{{Compat("html.elements.html")}}

+ +

Zie ook

+ +
    +
  • Het element op het hoogste niveau in MathML: {{MathMLElement("math")}}
  • +
  • Het element op het hoogste niveau in SVG: {{SVGElement("svg")}}
  • +
diff --git a/files/nl/web/html/element/index.html b/files/nl/web/html/element/index.html new file mode 100644 index 0000000000..f9d4a515c8 --- /dev/null +++ b/files/nl/web/html/element/index.html @@ -0,0 +1,110 @@ +--- +title: Element +slug: Web/HTML/Element +tags: + - Element + - HTML + - HTML root-element + - Naslagwerk + - Referentie + - Web +translation_of: Web/HTML/Element +--- +

 

+ +

{{HTMLSidebar("Elements")}}
+ Deze pagina geeft alle {{Glossary("HTML")}}-{{Glossary("Element","elementen")}} weer. Ze zijn gegroepeerd op functie om u te helpen met te vinden wat u zoekt.

+ +
+

Bekijk de sectie over elementen in het artikel Een inleiding op HTML voor meer informatie over de basis van HTML-elementen en -attributen.

+
+ +

Hoofdelement

+ +

{{HTMLRefTable("HTML Root Element")}}

+ +

Document-metadata

+ +

Metadata bevat informatie over de pagina, zoals stijlen, scripts, en gegevens om software ({{Glossary("zoekmachine", "zoekmachines")}}, {{Glossary("Browser","browsers")}}, etc.) te helpen de pagina te gebruiken en renderen. Metadata voor stijlen en script kunnen worden gedefinieerd in de pagina of kunnen verwijzen naar een ander bestand dat die informatie bevat.

+ +

{{HTMLRefTable("HTML Document Metadata")}}

+ +

Hoofdelement voor segmentatie

+ +

{{HTMLRefTable("Sectioning Root Element")}}

+ +

Inhoud segmenteren

+ +

Segmentatie-elementen zorgen ervoor dat u de inhoud van het document kunt indelen in logische stukjes. Gebruik de segmentatie-elementen om een uitgebreid stramien te maken voor uw pagina-inhoud, met bijvoorbeeld navigatie in de header en footer, en elementen die de segmenten van de inhoud identificeren.

+ +

{{HTMLRefTable("HTML Sections")}}

+ +

Tekstinhoud

+ +

Gebruik HTML-elementen voor tekstinhoud om blokken of segmenten van inhoud te organiseren tussen de openings- en sluitingstags van het {{HTMLElement("body")}}-element. Deze elementen identificeren het doel en de structuur van die inhoud, wat belangrijk is voor {{Glossary("toegankelijkheid")}} en {{Glossary("SEO")}}.

+ +

{{HTMLRefTable("HTML Grouping Content")}}

+ +

Inline tekstsemantiek

+ +

De inline tekstsemantiek kan worden gebruikt om de betekenis, structuur of stijl van een woord, regel of een willekeurig stuk te tekst te definiëren.

+ +

{{HTMLRefTable("HTML Text-Level Semantics")}}

+ +

Afbeeldingen en multimedia

+ +

HTML ondersteund verschillende multimediabronnen, zoals afbeeldingen, audio en video.

+ +

{{HTMLRefTable("multimedia")}}

+ +

Ingebedde inhoud

+ +

HTML kan naast normale multimediainhoud ook verschillende andere soorten inhoud bevatten, zelfs als deze inhoud niet altijd even interactief is.

+ +

{{HTMLRefTable({"include":["HTML embedded content"], "exclude":["multimedia"]})}}

+ +

Scripten

+ +

HTML ondersteunt het gebruik van scripttalen om dynamische inhoud en webapplicaties te maken, waarbij JavaScript de meest bekende is. Sommige elementen ondersteunen deze mogelijkheid.

+ +

{{HTMLRefTable("HTML Scripting")}}

+ +

Bewerkingen afbakenen

+ +

Deze elementen geven u de mogelijkheid om aan te geven dat bepaalde stukken van de tekst zijn aangepast.

+ +

{{HTMLRefTable("HTML Edits")}}

+ +

Tabelinhoud

+ +

Deze elementen worden gebruikt om tabelgegevens te maken en verwerken.

+ +

{{HTMLRefTable("HTML tabular data")}}

+ +

Formulieren

+ +

HTML versterkt een aantal elementen dat kan samen kan worden gebruikt om formulieren te maken, die een gebruiker kan invullen en kan opsturen naar de website of applicatie. In de Gids voor HTML-formulieren staat veel meer informatie over formulieren.

+ +

{{HTMLRefTable({"include": ["HTML forms"], "exclude":["Deprecated"]})}}

+ +

Interactieve elementen

+ +

HTML biedt een aantal elementen waarmee objecten voor een interactieve gebruikersomgeving kunnen worden gemaakt.

+ +

{{HTMLRefTable("HTML interactive elements")}}

+ +

Web Components

+ +

Web Components is een HTML-gerelateerde technologie, die het mogelijk maakt om aangepaste elementen te maken en gebruiken alsof het gewone HTML is. Daarnaast kunt u aangepaste versies maken van standaard HTML-elementen.

+ +

{{HTMLRefTable({"include":["Web Components"],"elements":["shadow"]})}}

+ +

Verouderde en afgeschafte elementen

+ +
+

Waarschuwing: Dit zijn oude HTML-elementen die zijn afgeschaft zijn en niet horen te worden gebruikt. U moet ze nooit gebruiken in nieuwe projecten, en u moet ze zo snel mogelijk vervangen in oude projecten. Ze worden hier alleen genoemd voor informatiedoeleinden.

+
+ +

{{HTMLRefTable({"include":["Deprecated","Obsolete"]})}}

+ +

 

diff --git a/files/nl/web/html/element/marquee/index.html b/files/nl/web/html/element/marquee/index.html new file mode 100644 index 0000000000..5c91b2f377 --- /dev/null +++ b/files/nl/web/html/element/marquee/index.html @@ -0,0 +1,203 @@ +--- +title: +slug: Web/HTML/Element/marquee +tags: + - Element + - HTML + - Referentie + - lichtkrant + - verouderd +translation_of: Web/HTML/Element/marquee +--- +
{{HTMLRef}}
+ +
{{obsolete_header}}
+ +

Samenvatting

+ +

Het HTML <marquee> element wordt gebruikt voor het invoegen van een scrollende lichtkrant met tekst.

+ +

Eigenschappen

+ +
+
{{htmlattrdef("behavior")}}
+
Bepaald hoe de tekst scrollt in de lichtkrant. Mogelijke waarden zijn: scroll, slide en alternate. Als er geen waarde is gespecificeerd, is de standaardwaarde scroll.
+
{{htmlattrdef("bgcolor")}}
+
Stelt de achtergrondkleur in door middel van de kleurnaam of hexadecimale waarde.
+
{{htmlattrdef("direction")}}
+
Stelt de richting van het scrollen in binnen de lichtkrant. Mogelijke waarden zijn left, right, up en down. Als er geen waarde is gespecificeerd, is de standaardwaarde left.
+
{{htmlattrdef("height")}}
+
Stelt de hoogte in pixels of percentage in.
+
{{htmlattrdef("hspace")}}
+
Stelt de horizontale marge in.
+
{{htmlattrdef("loop")}}
+
Stelt het aantal keer dat de lichtkrant scrollt in. Als er geen waarde is gespecificeerd, is de standaardwaarde −1, wat betekent dat de lichtkrant oneindig zal scrollen.
+
{{htmlattrdef("scrollamount")}}
+
Stelt de hoeveelheid scrolls in op elke interval in pixels. De standaardwaarde is 6.
+
{{htmlattrdef("scrolldelay")}}
+
+

Stelt de interval tussen elke scroll beweging in, in milliseconden. De standaardwaarde is 85. Merk op dat elke waarde kleiner dan 60 wordt genegeerd en de waarde 60 wordt in plaats daarvan gebruikt, tenzij truespeed is gespecificeerd.

+
+
{{htmlattrdef("truespeed")}}
+
Normaalgesproken worden scrolldelay waarden lager dan 60 genegeerd. Als truespeed wordt gespecificeerd, worden deze waarden niet genegeerd.
+
{{htmlattrdef("vspace")}}
+
Stelt de verticale marge in pixels of percentage in.
+
{{htmlattrdef("width")}}
+
Stelt de breedte in pixels of percentage in.
+
+ +

Event handlers

+ +
+
{{htmlattrdef("onbounce")}}
+
Wordt uitgevoerd wanneer de lichtkrant het einde van het scrollgebied bij loop heeft bereikt. Het kan alleen worden uitgevoerd wanneer behavior is ingesteld als alternate.
+
{{htmlattrdef("onfinish")}}
+
Wordt uitgevoerd wanneer de lichtkrant de hoeveelheid scrolls die is ingesteld bij loop, zijn voltooid. Het kan alleen geactiveerd wanneer het loop element is ingesteld als een getal dat groter is dan 0.
+
{{htmlattrdef("onstart")}}
+
Wordt uitgevoerd wanneer de lichtkrant start met scrollen.
+
+ +

Methods

+ +
+
start
+
Start het scrollen van de lichtkrant.
+
stop
+
Stopt het scrollen van de lichtkrant.
+
+ +

Voorbeelden

+ +
<marquee>Deze tekst zal van links naar rechts scrollen.</marquee>
+
+<marquee direction="up">Deze tekst zal van beneden naar boven scrollen.</marquee>
+
+<marquee direction="down" width="250" height="200" behavior="alternate" style="border:solid">
+  <marquee behavior="alternate">
+    Deze tekst zal stuiteren.
+  </marquee>
+</marquee>
+ +

{{EmbedLiveSample("Voorbeelden", 600, 450)}}

+ +

Specificaties

+ + + + + + + + + + + + + + + + + + + + + +
SpecificatieStatusOpmerking
{{SpecName('HTML WHATWG', 'obsolete.html#the-marquee-element-2', '<marquee>')}}{{Spec2('HTML WHATWG')}}Maak het verouderd in het voordeel van CSS, maar definiëer het verwachte gedrag, voor terugwerkende compatibiliteit.
{{SpecName('HTML5 W3C', 'obsolete.html#the-marquee-element-0', '<marquee>')}}{{Spec2('HTML5 W3C')}}Maak het verouderd in het voordeel van CSS, maar definiëer het verwachte gedrag, voor terugwerkende compatibiliteit.
+ +

Browser compatibiliteit

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
KenmerkChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basisondersteuning1.0{{CompatGeckoDesktop("1.0")}}2.07.21.2
truespeed element{{CompatNo}}{{CompatGeckoDesktop("1.9")}}4.0{{CompatNo}}{{CompatNo}}
hspace/vspace element{{CompatUnknown}}{{CompatGeckoDesktop("1.9")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
loop element{{CompatUnknown}}{{CompatGeckoDesktop("1.9")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
KenmerkAndroidFirefox Mobile (Gecko)IE MobielOpera MobielSafari Mobiel
Basisondersteuning{{CompatUnknown}}{{CompatGeckoMobile("1.0")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
truespeed element{{CompatUnknown}}{{CompatGeckoMobile("1.0")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
hspace/vspace element{{CompatUnknown}}{{CompatGeckoMobile("1.0")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
loop element{{CompatUnknown}}{{CompatGeckoMobile("1.0")}}{{CompatUnknown}}{{CompatUnknown}}{{CompatUnknown}}
+
diff --git a/files/nl/web/html/element/p/index.html b/files/nl/web/html/element/p/index.html new file mode 100644 index 0000000000..cfeb4103bf --- /dev/null +++ b/files/nl/web/html/element/p/index.html @@ -0,0 +1,113 @@ +--- +title:

+slug: Web/HTML/Element/p +tags: + - Element + - HTML + - HTML inhoud groeperen + - Naslagwerk + - Web +translation_of: Web/HTML/Element/p +--- +

{{HTMLRef}}
+ +

Het <p>-element van HTML vertegenwoordigt een paragraaf van tekst. Paragrafen worden meestal vertegenwoordigd in visuele media als blokken tekst, die worden gescheiden van aangrenzende blokken door verticale witruimte en/of inspringing op de eerste regel. Paragrafen zijn elementen op blokniveau.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
InhoudscategorieënFlow content, waarneembare inhoud.
Toegestane inhoudVerwoorde inhoud.
Tags weglatenDe begintag is verplicht. De eindtag mag worden weggelaten als het {{HTMLElement("p")}} element onmiddelijk wordt gevolgd door een {{HTMLElement("address")}}, {{HTMLElement("article")}}, {{HTMLElement("aside")}}, {{HTMLElement("blockquote")}}, {{HTMLElement("div")}}, {{HTMLElement("dl")}}, {{HTMLElement("fieldset")}}, {{HTMLElement("footer")}}, {{HTMLElement("form")}}, {{HTMLElement("h1")}}, {{HTMLElement("h2")}}, {{HTMLElement("h3")}}, {{HTMLElement("h4")}}, {{HTMLElement("h5")}}, {{HTMLElement("h6")}}, {{HTMLElement("header")}}, {{HTMLElement("hr")}}, {{HTMLElement("menu")}}, {{HTMLElement("nav")}}, {{HTMLElement("ol")}}, {{HTMLElement("pre")}}, {{HTMLElement("section")}}, {{HTMLElement("table")}}, {{HTMLElement("ul")}} of een ander {{HTMLElement("p")}}-element, of als er geen andere inhoud meer in het ouderelement is en het ouderelement geen {{HTMLElement("a")}}-element is.
Toegestane ouderelementenElk element dat stromende inhoud accepteert.
Toegestane ARIA-rollenAny
DOM-interface{{domxref("HTMLParagraphElement")}}
+ +

Attributen

+ +

Dit element omvat de globale attributen.

+ +
+

Opmerking: Het align-attribuut op <p>-tags is verouderd en moet niet meer worden gebruikt.

+
+ +

Voorbeeld

+ +
<p>Dit is de eerste paragraaf met tekst. Dit is de eerste paragraaf met tekst.
+	Dit is de eerste paragraaf met tekst. Dit is de eerste paragraaf met tekst.</p>
+
+<p>Dit is de tweede paragraaf met tekst. Dit is de tweede paragraaf met tekst.
+	Dit is de tweede paragraaf met tekst. Dit is de tweede paragraaf met tekst.</p>
+ +
De bovenstaande HTML geeft deze uitvoer:
+ +
 
+ +

Dit is de eerste paragraaf met tekst. Dit is de eerste paragraaf met tekst. Dit is de eerste paragraaf met tekst. Dit is de eerste paragraaf met tekst.

+ +

Dit is de tweede paragraaf met tekst. Dit is de tweede paragraaf met tekst. Dit is de tweede paragraaf met tekst. Dit is de tweede paragraaf met tekst.

+ +

Opmerkingen

+ +

Om de afstanden tussen paragrafen aan te passen gebruikt u de CSS-eigenschap {{cssxref("margin")}}. Plaats geen lege alineaelementen of {{HTMLElement("br")}} ertussen.

+ +

Specificaties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificatieStatusOpmerking
{{SpecName('HTML WHATWG', 'semantics.html#the-p-element', '<p>')}}{{Spec2('HTML WHATWG')}}Geen veranderingen sinds het laatste W2C-snapshot {{SpecName("HTML5 W3C")}}
{{SpecName('HTML5 W3C', 'grouping-content.html#the-p-element', '<p>')}}{{Spec2('HTML5 W3C')}}align-attribuut is verouderd.
{{SpecName('HTML4.01', 'struct/text.html#h-9.3.1', '<p>')}}{{Spec2('HTML4.01')}}Aanvankelijke definitie
+ +

Browsercompatibiliteit

+ + + +

{{Compat("html.elements.p")}}

+ +

Zie ook

+ +
    +
  • {{HTMLElement("hr")}}
  • +
  • {{HTMLElement("br")}}
  • +
-- cgit v1.2.3-54-g00ecf