Found 8591 Articles for Front End Technology

How to specify double border using CSS?

Devesh Chauhan
Updated on 27-Feb-2023 14:43:34

754 Views

We know that CSS is a rule based, style sheet language that is used for designing and customizing the web page. They are used to specify how an html element is going to be formatted and displayed on the screen. One of the most common forms of styling that we add to elements is adding or modifying the border of an element. This can be done by using the ‘border property’ of CSS. Border Property “border” is the abbreviated way to specify the border around an element by specifying the border width, its style, and the color of border. So, ... Read More

How to set default value to align content in CSS ?

Devesh Chauhan
Updated on 27-Feb-2023 14:41:46

458 Views

CSS is a language for the web, which is majorly used for designing and presenting the web page. It provides us with a lot of properties that will help in the customization process. One such property is the “align content property”. Align content property is used to distribute space, either in between or around items that belong to a flexbox or a grid. The initial value of this property is “normal”. It has discrete animations, and the computed value is always equal to what is specified. Point to note is that, it is not an inheritable property. It ... Read More

Types of graphics are supported by HTML5?

Devesh Chauhan
Updated on 27-Feb-2023 15:59:43

843 Views

Graphics are the visual representations that are used to represent any idea or imagination in order to enhance the overall experience of the website for the user. Graphics helps in conveying a complex message to the user in a simple and understandable way. Some ways of representing message in graphics are through photos, arts, diagrams, flowchart etc. Graphics in HTML are used for enhancing the appearance of webpage or website and to make the user interaction simple. There are different uses of graphics in HTML for which we have different technologies. We will discuss few of them below. SVG ... Read More

Why do we have External CSS and JS files

Devesh Chauhan
Updated on 27-Feb-2023 14:38:26

514 Views

In this article we will learn about the CSS and JS files. We will explore about their functions and different ways of using them in HTML document. And after learning about all these things we will understand why we have external CSS and JS files.CSS CSS stands for Cascading Style Sheets. CSS is used to apply styles to your websites and webpages. It is used to make webpages look more understandable, presentable and more appealing to the user. A CSS file can be written in any text editor but must be saved with a .css extension. A simple HTML ... Read More

Why we should not use tables for HTML Layout?

Devesh Chauhan
Updated on 27-Feb-2023 14:34:05

364 Views

In this article we will discuss about Table layout and its functions. We will understand why table layout is the least used layout in HTML and why it is not much recommended layout while designing website. A layout in HTML specifies the fundamental organisation and visual style of a website. A website's HTML layout serves as a guide for how the HTML elements should be placed. It gives you the ability to build websites with basic HTML tags. Table Layout Due to its complexity, table layout is one of the least recommended layouts in HTML. It is based on ... Read More

What are input elements in HTML5

Devesh Chauhan
Updated on 27-Feb-2023 14:31:18

382 Views

The Input element in HTML is used to create interactive controls for web-based forms for accepting data from the user. element has only opening tag and element will work only if we will add it between tags. Input element is considered as one of the most powerful and complex HTML element because of the massive number of combinations of attributes and input types. We have several attributes that we can use with element but we can use only one attribute at a time as per the need. E-mail Attribute As the name suggests email attribute ... Read More

Div Layout vs. Table Layout in HTML

Devesh Chauhan
Updated on 27-Feb-2023 14:27:24

6K+ Views

In HTML, a layout defines the basic structure and appearance of a website. HTML layout is a blueprint that shows us how the HTML elements are arranged in a webpage. It provides you the functionality of creating webpages using simple HTML tags. DIV Layout Div layout is the most common layout in HTML and is based on elements. element in HTML is used to define section of document. tag is a container tag i.e. it has both opening and ending tag. We can define multiple elements inside a HTML document and each of them ... Read More

Use of the DFN element type in HTML

Devesh Chauhan
Updated on 27-Feb-2023 14:25:12

342 Views

We will discuss about element syntax, properties and different ways of using it in HTML. And at last, we will understand why is it suggested to use element in your HTML document. But before all this we must learn about HTML element. HTML element is a section of an HTML document that tells the browser, how to represent the information of that section. It contains necessary information like instructions, idea of the webpage and main content. HTML element mainly consists of three parts − Opening tag − It marks the beginning of the HTML element ... Read More

What is the use of the ADDRESS element type in HTML?

Devesh Chauhan
Updated on 27-Feb-2023 14:24:09

571 Views

HTML element is a section of an HTML document that tells the browser how to represent the information of that section. It contains necessary information like instructions, idea of the webpage and main content. HTML element mainly consists of three parts − Opening tag − An opening tag is an HTML element that begins a section of content. Opening tags tell browsers to start interpreting the content as part of a specific type of element, such as a heading or paragraph. Closing tag − It marks the closing of the HTML element and tells the browser where it ... Read More

How to make div elements display inline using CSS?

Devesh Chauhan
Updated on 21-Aug-2024 13:41:00

5K+ Views

To make div elements display inline using CSS, is a very simple and easy process. There are various approaches which we can use to make div elements display inline. In this article we will be understanding five different approaches and some other properties to make div element display inline. We are having three div boxes which are block element, our task is to make div elements display inline using CSS. Approaches to Make div Elements Display Inline Using CSS Here is a list of approaches to make div elements display inline using CSS which we will be discussing in this ... Read More

Advertisements