HTML

HTML Layout Elements

HTML layouts give you a way to arrange web pages in a way that is well-behaved, well-structured, and responsive. You could also say that HTML layouts tell you how to arrange web pages. Layout is how the visual parts of an HTML document are put together. When making a website, the web page layout is […]

HTML Layout Elements Read More »

HTML Head Element

The <head> element in HTML is used to hold metadata (data about data). It goes between the tags <html> and <title>Page Title</title>. In an HTML document, the head is a part whose content is not shown when the page loads. It only has information about the HTML document’s metadata, which gives information about the HTML

HTML Head Element Read More »

HTML File Paths

An HTML file path tells you where a file is in a website’s folder. For a web browser, a file’s path is like its address. With the help of file paths, we can add any external resource to our HTML file, such as an image, file, CSS file, JS file, video, etc. A file path

HTML File Paths Read More »

HTML JavaScript

HTML JavaScript enhances the functionality and interactivity of HTML documents. Web sites can be made more engaging, dynamic, and interactive with the use of a script, which is a short programme used in conjunction with HTML to achieve these goals (think: alert popup window on mouse click). Nowadays, JavaScript is the most widely used scripting

HTML JavaScript Read More »

HTML Iframe

iframes in HTML Web pages can be embedded within other websites using an HTML Iframe (a webpage within a webpage). An inline frame is a type of frame that is defined by the HTML iframe> tag. In an HTML document, an iframe creates a rectangular area in which another page can be displayed. JavaScript allows

HTML Iframe Read More »

HTML id Attribute

HTML id Attribute is the id global attribute creates a unique identifier (ID) for the whole document. Its job is to identify the element when linking (using a fragment identifier), scripting, or styling (with CSS). The HTML id attribute is used to give each HTML element its own unique id. In an HTML file, you

HTML id Attribute Read More »

HTML class Attribute

HTML class attribute gives an element one or more class names. Most of the time, the class attribute points to a class in a style sheet. But JavaScript can also use it (through the HTML DOM) to change HTML elements with a certain class. The class attribute of an HTML element is used to give

HTML class Attribute Read More »

HTML Color Names (A to Z)

HTML colour names and their corresponding hexadecimal codes are provided in an alphabetical list. It’s set up alphabetically, starting with the letter A. To save on screen real estate, hex values are preferred over html colour names. When you compress your CSS file, the hexadecimal values for colours are used instead of the corresponding html

HTML Color Names (A to Z) Read More »

HTML Description List

HTML Description List | HTML Definition List HTML’s Description List or Definition List shows elements in the same way that a dictionary does: as definitions. When you want to show a glossary, list of terms, or other name-value list, the definition list is a good choice. Description lists are made with the <dl>, <dt>, and

HTML Description List Read More »

Scroll to Top