Eesha Gandhi has Published 48 Articles

How to Display Unordered List in Two Columns?

Eesha Gandhi

Eesha Gandhi

Updated on 28-Nov-2024 14:07:57

6K+ Views

In HTML, unordered lists are collections of items that do not have to be in any particular order. To list these items, we frequently use simple bullet points and that is why they are often known as bulleted lists. An unordered list begins with the tag and closes with ... Read More

How to Create StopWatch using HTML CSS and JavaScript ?

Eesha Gandhi

Eesha Gandhi

Updated on 07-Aug-2024 17:26:40

5K+ Views

To create Stopwatch using HTML, CSS, and Javascript, we need to have basic understanding of working of HTML, CSS and JavaScript. HTML and CSS will be used to make UI of stopwatch where HTML will create structure of stopwatch, CSS styles the stopwatch and Javascript will be adding functionality to ... Read More

What are the new types introduced in HTML for input type?

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 14:26:42

344 Views

There are a number of new HTML5 form input types, 13 to be exact, that make it much easier for web designers to create engaging and user-friendly web forms. In web browsers that support them, the new HTML5 input types provide data validation, date picker controls, colour picker controls, inline ... Read More

What is the Difference Between <b> and <strong> , <i> and <em> Tags?

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 13:10:18

834 Views

In this article we will discuss the differences between the and tags, and tags and look at some examples which use these tags. and tags The HTML element is used to draw the reader's attention to elements whose contents are otherwise unimportant. It ... Read More

How do I Display Images From Another Origin in My Angular Web Application?

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 13:08:22

887 Views

Using the Assets Directory We can serve an image in angular by first placing it in our project's assets directory, where we can create a separate directory for images or simply leave it in the assets directory as is. We can open the specific component typescript (.ts) file where we ... Read More

How do you Put Space between Two Objects in the Same Row?

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 13:06:09

454 Views

Using Margin and Padding Properties Additional spacing can be added to the top, right, bottom, or left of any HTML element. However, before deciding on the type of space to add around the element or object, it is important to understand the difference between margin and padding. Padding is used ... Read More

How to Auto Checked the Checkbox and Auto Display the Results When Checked

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 13:02:31

2K+ Views

A checkbox is created by using the tag with the type="checkbox" attribute (also called a tickbox). Users can select multiple options by checking one or more checkboxes. In HTML, the checkbox can be used alone or in conjunction with the "form" attribute. When the question or form is submitted, ... Read More

How to Reduce Space Between Elements on a Row in CSS Bootstrap?

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 12:57:56

1K+ Views

Bootstrap grid system lays out and aligns content using a series of containers, rows, and columns. It is responsive and built with flexbox. It supports up to 12 columns per page. If we don't want to use all 12 columns individually, we can group them together to make wider columns. ... Read More

HTML Docs Not Updating from CSS

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 12:55:20

523 Views

Web pages are made using a variety of fundamental technologies, HTML (Hypertext Markup Language) and CSS (Cascading Style Sheets) being the primary ones. HTML provides structure to the page, while CSS is responsible for the (visual and aural) layout for a variety of devices. CSS can be added to HTML ... Read More

How to Automatically Open the Detail Menu on Search for Buttons?

Eesha Gandhi

Eesha Gandhi

Updated on 12-Sep-2023 12:53:45

120 Views

Buttons are clickable elements in HTML that perform actions. They have the ability to submit a form, reset a form, or perform a JavaScript function. They are defined by the or tags. Buttons created using the tag can hold content such as text, icons, images, and so ... Read More

Advertisements