HTML <s> Tag
The <s> tag in HTML is used to define text that is no longer correct, accurate, or relevant but should not be deleted.It visually renders text with a strikethrough line, similar to <del>, but <s> is meant for stylistic or factual changes rather than indicating document edits. Syntax Attributes Attribute Description None The <s> tag […]
HTML <blink> Tag
The <blink> tag in HTML was used to make enclosed text blink or flash on and off continuously on the screen.It was introduced in Netscape Navigator browsers in the 1990s as a visual attention grabber for important text or warnings. Note: The <blink> tag is deprecated and not supported in HTML5 or modern browsers.The blinking […]
HTML <marquee> Tag
The <marquee> tag in HTML was used to create scrolling text or images that move horizontally or vertically across a webpage.It was often used to attract attention with moving announcements, news tickers, or advertisements. Note: The <marquee> tag is deprecated in HTML5 and should not be used in modern web development.The same effect can be […]
HTML <noframes> Tag
The <noframes> tag in HTML was used to provide alternative content for browsers that do not support frames.When a webpage used the <frameset> element to divide the browser window into multiple frames, the <noframes> tag offered fallback content (like a message or simple links) for users whose browsers couldn’t display frames or had frames disabled. […]
HTML <frameset> Tag
The <frameset> tag in HTML was used to define a set of frames within the browser window. It allowed you to divide the window into multiple sections (frames), each displaying a separate HTML document. ⚠️ Important: The <frameset> element is not supported in HTML5. It was used in older versions (HTML 4.01) and has been […]
HTML <frame> Tag
The <frame> tag in HTML was used to define a specific region within a <frameset> that could display a separate HTML document.Frames allowed web developers to split the browser window into multiple sections, each loading a different webpage.This tag is deprecated in HTML5 and replaced by more modern layout techniques using CSS Flexbox, Grid, or […]
HTML <applet> Tag
The <applet> tag in HTML was used to embed Java applets (small Java programs) into a web page.Applets could display interactive graphics, animations, or run other Java-based functionalities directly within the browser.However, the <applet> tag is deprecated in HTML5 and should no longer be used — it has been replaced by the <object> or <embed> […]
HTML <acronym> Tag
The <acronym> tag in HTML was used to define an acronym — a word formed from the initial letters of other words, such as NASA or HTML.When a user hovered over the acronym, the browser could display its full meaning using the title attribute.This tag is deprecated in HTML5 and replaced by the <abbr> tag. […]
HTML <tt> Tag
The <tt> tag in HTML stands for “teletype text.”It was used to display text in a monospaced (fixed-width) font, resembling the output of old teletype machines.This tag is deprecated in HTML5, and developers should use CSS or the <code> tag instead. Syntax Attributes Attribute Description None The <tt> tag does not have any specific attributes. […]
HTML <strike> Tag
The <strike> tag was historically used to display text with a strikethrough (line through the text).It is deprecated in HTML5.The modern standard uses the <del> or <s> tags or CSS text-decoration: line-through; to achieve the same effect. Syntax Attributes Attribute Description None The <strike> tag does not have any specific attributes. Example Output Browser Output […]