
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

566 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

214 Views
Materialize is a CSS framework which is used for designing as it uses the classic principles and combine them with innovation and technology. The creator of materialize is google as they developed a design system which can allow a unified user experience to every user in every type of product, regardless of the platform that the user is using. Breadcrumbs is a component which is built in materialize CSS and is mostly used when there are lots of layers so as to display the current location of the user working on it whether on the website or the web app. ... Read More

3K+ Views
You might have seen sliding text reveal animation at different websites like personal portfolio websites and even different video content which gives a different experience to the user as well as the text feels more lively. The sliding text animation can be easily made using HTML and CSS which will catch the attention of the user that visits our website for the website. In this article we are going to have a look at how can we create our sliding text reveal animation using only HTML and CSS How to create the sliding animation? Let's talk about that the approach ... Read More

620 Views
Styling a website is the most integral part of creating a website, as it serves as a hook-point for the user, who is visiting your website for the first time. We can create many types of designs and interactive experiences using CSS. A text portrait can be created used illustrator or Photoshop to make the design attractive. In this article we are going to have a look at how can we generate and create a text portrait using CSS and some JavaScript function so as to achieve our text portrait. Creating the text portrait A text portrait is an image ... Read More

105 Views
Selectors are an important part of the CSS styling as all the properties which are applied to the elements are done using the selectors> it is also possible to select the elements on the basis of their relationship with some other element like a element which has a preceding element or any other element in the series. There are sibling combinator, child combinator and adjacent sibling combinator. In this article we are going to have a look at how can we style the element that have an adjacent item right before it Styling elements with adjacent items The elements which ... Read More

441 Views
When visiting certain websites, the user may feel the need to skip the content which is irrelevant and jump right to the content in which the user is interested in and there are many ways to do so in CSS. The user may want to click on a button or maybe link to take them to an element which is present on the same page. The user might be able to want to scroll to a particular element or be able to skip the content. In this article we are going to have a look at how can we scroll ... Read More

812 Views
We can create a basic pricing table using just HTML and CSS. A pricing table can be a useful feature to implement in different websites where the purchase of commodities is involved, for example, an e-commerce web application, or travel websites. Let’s learn to create a such table with the help of the example below − Example We will first create an HTML layout of the table in the following index.html file, and then add stylings to it. How to Create Pricing Table using HTML and CSS? ... Read More
499 Views
Hyper Text Markup Language is referred to as HTML. It is used for building Web pages; it explains how a Web page is put together. There are several components to it. The components in it instruct the browser on how to render the material. Cascading style sheets, or CSS, define how HTML components should appear in various print and digital media, including displays and other print and digital forms. The use of CSS saves a lot of time. It can control the design of several web pages at once. In this article, we will learn about how to create ... Read More
14K+ Views
To create the Indian flag using HTML and CSS, we will need to have good understanding of CSS. Indian flag have three colors: saffron, white and green and Ashoka Chakra at the middle. In this article, we will be creating stepwise Indian flag. First making a pole then tricolor and then rotating Ashoka chakra all with the help of HTML and CSS only. Later we will be animating our flag with wave animation and flag movement. These are the steps which we will be following: .flag-container { ... Read More
709 Views
CSS (Cascading Style Sheets) is a stylesheet language used for describing the look and formatting of a document written in HTML. It is a crucial part of web development, as it allows developers to control the appearance of their websites and applications. In this article, we will be discussing some of the most useful CSS functions that every frontend developer should be familiar with. These functions can be used to add style and formatting to your website or application and can greatly improve the user experience. Like any other programming language, Functions in CSS makes the task easier by ... Read More