Tag: HTML
_blank (HTML) - target attribute to "_blank", the link will open in a new browser window or a new tab.
alt (HTML) - The required alt attribute specifies an alternate text for an image, if the image cannot be displayed.
audio (HTML) - The <audio> tag is used to embed sound content in a document, such as music or other audio streams.
backround HTML (HTML) - To add a background image on an HTML element, use the HTML
style attribute and the CSS background-image property:
<p style="background-image: url('img_girl.jpg');">br (HTML) - <br> - tag inserts a single line break.
canvas (HTML) - The HTML <canvas> element is used to draw graphics on a web page. The HTML <canvas> elemen is only a container for graphics.
You must use a script to actually draw the graphics. Canvas has several methods for drawing paths, boxes, circles, text, and adding images.
contenteditable (HTML) - The HTML contenteditable attribute empowers users to directly edit the content of an element.
By setting this attribute to true, you transform a static element into an editable field.
This feature opens up possibilities for creating interactive and user-generated content,
but it also comes with challenges in terms of data management and security.
drop-down list (HTML) - Dropdowns are used in web forms to provide a compact interface for selecting items from a list.
HTML dropdowns are created using the <select> and <option> elements.
emphasized text (HTML) - The
<em> tag is used to define emphasized text. The content inside is typically displayed in italic.iframe (HTML) - An iframe (Inline frame) is an HTML element that allows you to embed another HTML document within the current page.
It is commonly used to display content like videos, maps, advertisements, and social media feeds directly on a webpage.
1
2
Categories:
- CSS

