Found 10711 Articles for Web Development

10 Best Web Development Courses in 2023

Satish Kumar
Updated on 26-Feb-2024 12:03:47

254 Views

Web development has become a popular field of study in recent years, thanks to the increasing demand for web-based applications and websites. As a result, there are now numerous web development courses available to individuals looking to learn or improve their skills in this field. In this article, we will discuss some of the best web development courses in 2023. Codecademy Web Development Codecademy is a well-known online learning platform that offers courses in various programming languages. Its Web Development course is an excellent option for beginners looking to learn HTML, CSS, and JavaScript. The course is entirely online and ... Read More

Using data in JSON format in Snack

Saba Hilal
Updated on 02-May-2023 14:43:09

545 Views

There are lots of ways to use data with apps made with Snack Expo. Sometimes the data is stored as JSON, that mean JavaScript Object Notation. In this format, the data can be stored easily as Key-Value pairs and can also be converted to a CSV file. In this article, using javascript on Snack, the methods to use JSON data are specified. In example 1, the method to read this data and to display it as a table is given. In the second example, the methods of saving the JSON data as a CSV file and to download it, is ... Read More

What is the use of css() method in jQuery?

Shubham Vora
Updated on 25-Apr-2023 16:18:04

237 Views

Jquery contains various methods, and CSS() is one of them. The CSS() method is used to get the value of the particular css property applied to the particular HTML element. Furthermore, it is also used to set the CSS property with its value for the particular HTML element. Developers can also update the CSS property value using the CSS() method. In this tutorial, we will learn to use Jquery's css() method to access and set the CSS property for the particular HTML element. Syntax Users can follow the syntax below to use Jquery's css() method. Var value = $('element').css(property); $('element').css(property, ... Read More

What is the use of CSS ruleset?

Shubham Vora
Updated on 25-Apr-2023 16:15:15

389 Views

CSS stands for the cascading style sheet. It is used to style the HTML element. HTML is used to create web pages or add content to web pages. After that, the developer uses CSS to render the HTML content in a particular style to make it look awesome. The CSS ruleset contains mainly two parts. One is a CSS selector, and another is a declaration block. The CSS selector is used to select HTML elements, and the declaration block contains the CSS properties in the key-value format to apply to the HTML element. Syntax Users can follow the syntax ... Read More

What is the Outline Effect to Text?

Shubham Vora
Updated on 24-Apr-2023 17:30:02

247 Views

Sometimes, we require to show only the text's outline and remove the text's fill. We can also say it is the outline effect. We can use various CSS properties to generate an outline effect for the text. For example, we can add a border to the text and remove the fill colour of the text to add an outline effect to the text. Here, we have three different approaches to showing text with outline effects using HTML and CSS. Using the Various CSS Properties In this approach, we will use the three CSS properties to add an outline effect to ... Read More

What is the difference between position:sticky and position:fixed in CSS?

Shubham Vora
Updated on 24-Apr-2023 17:22:58

12K+ Views

In CSS, the ‘position’ property is used to set the position in the viewport for the HTML element. It can have values such as ‘fixed’, ‘sticky’, ‘static’, ‘absolute’, ‘relative’, etc. In this tutorial, we will learn the difference between the ‘position: fixed’ and ‘position: sticky’. What is Position: Fixed in CSS? The ‘fixed’ value for the position property is used to set any element at the fixed position in the HTML viewport. Whenever we set the fixed position for any HTML element, it comes out from the document flow. It sets the position based on the viewport, even if we ... Read More

What is the difference between “screen” and “only screen” in media queries?

Shubham Vora
Updated on 24-Apr-2023 18:28:03

3K+ Views

In CSS, media queries play an important role in creating a responsive web design, and nowadays responsive design is one of the important things every website requires to attract visitors. In general, we can write media queries using the @media CSS rule. However, we can use the different conditions and keywords in a media query to target different devices. For example, mobile devices, desktop devices, printer screens, etc. In this tutorial, we will learn the difference between the ‘screen’ and ‘only screen’ in media queries. What is a Screen in Media Queries? In CSS, we use the ‘screen’ keyword inside ... Read More

What is styling text input caret ?

Shubham Vora
Updated on 24-Apr-2023 17:11:57

443 Views

In the text input of the HTML, you can observe the marker showing at the editing position in the text, called the text input caret. Also, it is known as a text input cursor. In this tutorial, we will learn to style the text input caret. However, we can only change the color of the text input caret as changing shape is not supported by modern browsers. Syntax Users can follow the syntax below to use the ‘caret-color’ CSS property to change the color of the text input caret. caret-color: color; In the above input, ‘color’ can be the ... Read More

Wave inside Text using pure CSS

Shubham Vora
Updated on 24-Apr-2023 17:10:37

288 Views

Developers can use CSS to add animation to the HTML element. Here, we will use CSS to add a wavy effect inside the text. It will look like a real wave in text Here, we have three approaches to add a wavy effect to the text. We will take a look at all approaches one by one. Syntax Users can follow the syntax below to add a wavy effect to the text. @keyframes wavey { 0%, 100% { /* add initial clip-path */ } ... Read More

Simple Contact Form using HTML CSS and PHP

Shubham Vora
Updated on 24-Apr-2023 18:38:48

4K+ Views

A contact form is a great way to allow users to reach out to you directly through your website. Contact forms are a crucial aspect of any website, as they allow visitors to get in touch with the website owner. A contact form on website provides an easy way for visitors to ask questions, make inquiries, or provide feedback. In this tutorial, we will be discussing how to create a simple contact form using HTML, CSS, and PHP. Step 1: Create the HTML Form The first step in creating a contact form is to create its structure using HTML. In ... Read More

Advertisements