
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 2202 Articles for HTML

2K+ 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

551 Views
The HTML (navigation section element) represents a section of a page that holds navigation links either within the current document or to other external documents. This tag is commonly used for navigation between sections of the HTML document, table of contents, and indexes. Now, we will discuss both scenarios i.e. navigation between the sections of the same HTML document and navigating to external documents with suitable examples further in this article. Example In the following example, we are specifying navigation links (using tags) to some sections in the same HTML document. nav ... Read More

2K+ 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

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

183 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

598 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

629 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

1K+ Views
HTML stands for HyperText Markup Language. It is a web-based scripting language used for designing webpages. It uses tags to define elements like headings, paragraphs, and images, providing structure and layout to the webpage. The latest version of HTML is HTML5. Why HTML? HTML is essential for web page design, offering an easy way to define content structure and layout. It enables web browsers to display content in a structured manner, making it user-friendly. Advantages of HTML Following are the advantages of using HTML to create web pages − HTML has a simple syntax, easy to learn, understand ... Read More

146 Views
In this article, we are going learn how CSS classes can be manipulated in HTML using jQuery. Using jQuery, it is easy to manipulate the style of HTML elements. We have several jQuery methods that are used to manipulate the CSS. Let us discuss them one by one with suitable examples. jQuery addClass() Method The jQuery addClass() method is used to add one or more classes to the selected elements. Syntax Following is the syntax of jQuery addClass() method − $(selector).addClass(classname); The "classname" is a required parameter. It specifies one or more class names to be added. Example ... Read More

694 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