Found 8895 Articles for Front End Technology

How do I add a tool tip to a span element?

Nikhilesh Aleti
Updated on 04-Aug-2023 17:44:17

1K+ Views

CSS stands for Cascading style sheets. It is developed by Hakon Wium, Bert Bos, World Wide Web 17 December 1996. CSS is a stylesheet used to specify the styling of the HTML elements present in the web page. It allows web developers to control the layout, colors, fonts, margins, padding, Height, Width, Background images, etc. The latest version of CSS is CSS3. In this article, we are going to learn how to add a tooltip to a span element using HTML and CSS. Creating a Tooltip In HTML, a tooltip can be used to specify additional information about something when ... Read More

DHTML JavaScript

Nikhilesh Aleti
Updated on 04-Aug-2023 17:34:54

4K+ Views

DHTML stands for Dynamic Hypertext Markup Language. DHTML combines HTML, CSS, and JavaScript to create interactive and dynamic web pages. It allows for customization and changes to the content based on user inputs. Earlier, HTML was used to create static pages that only defined the structure of the content. CSS helped in enhancing the page's appearance. However, these technologies were limited in their ability to create interactive experiences. DHTML introduced JavaScript and the Document Object Model (DOM) to make web pages dynamic. With DHTML, the web page can be manipulated and updated in response to user actions, eliminating the ... Read More

Design a transparent login/Sign Up webpage using HTML and CSS

Nikhilesh Aleti
Updated on 04-Aug-2023 17:33:36

1K+ Views

In HTML, the login forms are used to collect information about the user and have a button to send the details for server-side operations. The login form contains basic information such as Name, Date of birth, Email, Mobile number, Gender, Address, etc. Nowadays, HTML forms are used in almost every website on the Internet to gather user information. In this article, we are going to design a transparent login form on a webpage using HTML and CSS. Designing a transparent login/Sign Up webpage The following is the approach − Create an element with the class named "login-container". ... Read More

Design a Navigation Bar with Animated Search Box

Nikhilesh Aleti
Updated on 04-Aug-2023 17:27:06

1K+ Views

The Navigation bar HTML is a horizontal bar on top of the webpage where it contains links, dropdowns, and search boxes that links to appropriate sections/pages in the webpage. This may help the users to traverse through the website effortlessly. The navigation bar can be implemented in many ways, but the traditional way of implementing is horizontal and vertical bars. In this article, we are going to design a navigation bar with an Animated search bar using simple HTML and CSS. Creating a Navigation Bar with Animated Search Box The following is the approach − Create an element ... Read More

Elements that are used in head section of HTML page

Nikhilesh Aleti
Updated on 04-Aug-2023 17:24:19

139 Views

HTML stands for HyperText Markup Language and is a web-based scripting language. HTML consists set of elements that are used to create and structure web pages. Programmers often prefer HTML to design websites because it is flexible and easy to use. An HTML document consists of three major segments; head, body, and footer. Following is the basic layout of an HTML document − ... Read More

Alternative to iFrames in HTML5

Nikhilesh Aleti
Updated on 04-Aug-2023 17:20:10

13K+ Views

The HTML tag specifies an inline frame (container). This inline frame is used to embed another document within the current HTML document. The "srcdoc" attribute of the tag is used to specify the HTML content of the page to be displayed in the . HTML Tag The alternative tag to iframe in HTML is tag. It is similar to the iframe tag which defines a container for external resources such as a picture, a webpage, a media player, or a plug-in application. Following are the attributes of the HTML tag − height − ... Read More

Explain various type of HTML DOM methods

Nikhilesh Aleti
Updated on 04-Aug-2023 17:18:21

354 Views

We have six different HTML DOM methods that can be used to access or manipulate HTML elements using JavaScript − HTML DOM getElementById() Method HTML DOM getElementsByClassName() Method HTML DOM getElementsByName() Method HTML DOM getElementsByTagName() Method HTML DOM querySelector() Method HTML DOM querySelectorAll() Method Now, let us discuss the above-mentioned HTML DOM methods with appropriate examples. HTML DOM getElementById() The HTML getElementId() method is used to access or manipulate an HTML element using its "id". This method accepts "id" as a parameter and returns the reference to the DOM element with the specified id. Note − ... Read More

HTML tags to display the data in the tabular form?

Nikhilesh Aleti
Updated on 04-Aug-2023 17:16:02

339 Views

There can be scenarios, where we have to include complex or large amounts of data to be on the webpage understandably and more conveniently. In such cases, we can use the HTML tables to organize the data, so that it will be more convenient for the user to go through and understand it. An HTML table is a structure that can be used to display data in a tabular form (i.e. in rows and columns) on a webpage. We can display the data in a tabular form using the following HTML tags − - It defines ... Read More

Display Property in Bootstrap with Examples

Nikhilesh Aleti
Updated on 04-Aug-2023 17:08:45

160 Views

The Display property in Bootstrap is used to set the element’s display property. The Bootstrap utilities provide classes such as "block", "inline", etc., which are used to directly control the display property of an element. These display property classes in Bootstrap allow developers to easily apply CSS display property values to elements without manually writing the corresponding CSS styles. Following are the display property classes − .d-block − This class sets the display property of an element to block. .d-inline − This class sets the display property of an element to inline. .d-inline-block − This class sets the display ... Read More

How to access an HTML document in a browser?

Nikhilesh Aleti
Updated on 04-Aug-2023 17:02:35

222 Views

HTML stands for Hyper Text Markup Language and is a web-based scripting language. HTML consists set of elements that are used to create and structure web pages. Programmers often prefer HTML to design websites because it is flexible and easy to use. In this article, we discuss how to create an HTML file, what is an HTML file, and explain how to open one in a browser. What is an HTML file? An HTML file is a text document written in Hypertext markup language that contains the content and structure of a webpage. This HTML file contains various tags ... Read More

Advertisements