Sõnastik

Tag: HTML

img (HTML) - The HTML <img> tag is used to embed an image in a web page. Images are not technically inserted into a web page; images are linked to web pages.
important text (HTML) - HTML <strong> element defines text with strong importance.
ol (HTML) - The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.
svg (HTML) - SVG defines vector-based graphics in XML, which can be directly embedded in HTML pages. SVG graphics are scalable, and do not lose any quality if they are zoomed or resized: SVG. SVG is supported by all major browsers. Example:
<svg width="100" height="100">
  <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow"/>
</svg>
table (HTML) -

HTML tables allow web developers to arrange data into rows and columns.

textarea (HTML) - The <textarea> tag defines a multi-line text input control. The <textarea> element is often used in a form, to collect user inputs like comments or reviews.
textfield (HTML) - The <input type="text"> defines a single-line text field. The default width of the text field is 20 characters.
ul (HTML) - <ul> HTML element represents an unordered list of items, typically rendered as a bulleted list.
video (HTML) - The HTML <video> element is used to show a video on a web page.
1 2

Categories:

  • CSS