
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

3K+ Views
The button to open SMS provides users with the convenience of sending SMS to a phone number directly from our website instead of writing it down and then messaging to that number. With the help of href attribute, we replace the URL with a cellphone number and add sms, before it to make an SMS hyperlink. There are several use cases for creating a button to open SMS compose to a phone number such as Contacting customer support, Requesting information, Sales and marketing etc. This can be especially useful for users who prefer text messaging over phone calls ... Read More

2K+ Views
In today's digital world, where the protection of sensitive information is crucial, ensuring the security of user passwords is of utmost importance. When users enter their passwords in HTML forms, it is essential to implement measures to protect their privacy and prevent unauthorized access. One way to enhance password security is by hiding the password as it is being entered. This blog post will explore various techniques to hide passwords in HTML forms, providing users with a sense of privacy and safeguarding their sensitive information. We will begin by discussing the default behavior of password input fields in HTML, where ... Read More

926 Views
In today's digital landscape, web applications often require users to provide sensitive information, such as usernames and passwords, through HTML forms. When submitting a form, the default behavior of many web browsers is to include this information as part of the URL. However, exposing credentials in the URL can pose significant security risks, as the information becomes visible in browser history, server logs, and can be easily intercepted. To mitigate this risk and enhance the security of web applications, it is essential to understand how to hide credential information from the URL while submitting HTML forms. In this article, we ... Read More

822 Views
When designing a form for a website, it's important to consider the user experience and make it as easy as possible for users to fill out the form. One way to do this is by grouping related elements together so that users can quickly scan and fill out the form. In this blog post, we'll discuss how to group related elements in a form using HTML. What is Grouping in HTML Forms? Grouping in HTML forms involves grouping related form elements together, such as radio buttons, checkboxes, and text input fields. By grouping related elements together, you can make it ... Read More

1K+ Views
Nowadays, creating websites that provide a seamless experience across different devices is very important. Responsive web design plays a pivotal role in ensuring that our websites adapt to various screen sizes and orientations. One common requirement in responsive design is the ability to hide certain HTML elements specifically in mobile views. This is where jQuery steps in. In this article, we will explore how to hide an HTML element in mobile view using jQuery. We will learn how to detect viewport width using jQuery, and leverage this information to conditionally hide elements based on the device's screen size. By the ... Read More

8K+ Views
When working with dynamic web pages, it's often necessary to hide certain HTML elements based on specific conditions or user interactions. One common approach is to assign classes to these elements and then dynamically hide them using JavaScript. This provides a flexible and efficient way to control the visibility of elements without modifying the HTML structure. In this article, we will explore how to hide HTML elements by class using JavaScript. We'll discuss the importance of dynamically hiding elements, understand the concept of HTML classes, and learn different methods to select elements by class using JavaScript. We will then dive ... Read More

238 Views
If you have a lot of footer content on your website, it can be helpful to group it together in the form of a table. This can make the content easier to read and navigate, and can also provide a more structured and organized look to your website. In this article, we'll look at how to group footer content in the form of a table using HTML, CSS, and JavaScript. Grouping Footer Content Using HTML To group footer content in the form of a table using HTML, you can use the element along with the appropriate table-related elements such ... Read More

349 Views
The HTML DOM TableRow.insertCell() method is used to insert a new cell(s) () into a table row () and returns a reference to the cell. This method accepts a single parameter "index" (cell index of the new cell); If the index value is provided as -1 or equal to the number of cells, the new cell will be inserted as the last cell in the row. If the index value is provided as 0, the new cell will be inserted at the first position. If we do not provide the index, by default, it will be -1. Syntax Following is ... Read More

2K+ Views
HTML, XML, and DHTML are web technologies. HTML or HyperText Markup Language is a primary markup language that is used to design web pages. XML or extensible language, is a markup language that focuses on data description that is both human-readable and machine-readable. DHTML or Dynamic HyperText Markup Langauge combines HTML, CSS, and JavaScript to responsive web pages. These three technologies are essential to design a webpage that is user-engaging and visually appealing. In this article, we will discuss each technology one by one with appropriate examples. HTML HTML stands for HyperText Markup Language. It is a standard markup language ... Read More

20K+ Views
To design a portfolio webpage using HTML and CSS can be useful to showcase your best works and attract attention of professionals in collaborating or hiring you. Portfolio website serves as a platform to display your work and demonstrate your skills. It has the same purpose as a CV (Curriculum vitae). The portfolio website will showcase them with engaging visual images and often more detailed than a hand-written CV. In this article, we will learn and understand how we can design a portfolio webpage using HTML and CSS through stepwise explanation and example code. Why Create a Portfolio Website? ... Read More