Software Engineering Basics of CSS (Cascading Style Sheets) We have covered the basics of CSS in depth. Cascading Style Sheets (CSS) is a style sheet language which is used for designing the webpages and their layouts developed in a markup language like HTML.
Software Engineering Different ways to center elements in HTML In this article, we have discussed Different ways to center elements in HTML. Firstly we'll discuss on the Introduction to the article. Later part, we'll understand ways of centering elements of HTML elements - Horizontally, in-line with other elements and at exact center.
Software Engineering Sending Browser Notifications from Chrome Extensions In this article, we have explored how to send browser notifications from Chrome extensions. We have explained the process step by step.
Software Engineering Basics of jQuery We have covered the basics of jQuery in depth from setting up an environment to selecting elements, applying methods, events, effects and much more.
Software Engineering Different Types of Browser Storage We have covered the different types of browser storage (like cookies, local storage, session storage, indexedDB) and use case examples to grasp the pros and cons. In the end, you will be able to have a better knowledge of each type.
Software Engineering Building a chrome extension step by step In this guide, we have illustrated how to build a simple chrome extension step by step and how to load our chrome extension using Developer tools and check it.
Software Engineering Develop a year Progress bar in HTML/ JS In this article, we have developed a year Progress bar in HTML using JavaScript. We have explained the calculation and implementation in HTML and CSS for the frontend and JavaScript for the calculation.
Web Development Types of caching in Web Application We will be discussing on the Types of caching in Web Application. Firstly we'll discuss on the Introduction to Cache. Secondly, we'll get familiar with the Types of it.
Software Engineering Forms in HTML HTML Forms are used to collect information from users, such as a user name, email address, passwords, etc. There are various sorts of form controls that you can use to gather information utilizing HTML forms such as text field and others.
Software Engineering A Guide to CSS Pseudo Classes A pseudo class is basically a pseudo state of element which can be later targeted with CSS. They can be used to target and style those elements which cannot be targeted with normal CSS classes or Id.
Software Engineering Introduction to Single Page Applications with Flask and AJAX Let us have a look at what single-page applications are and how can we create one using AJAX, with Flask as the back-end.
Software Engineering Choose the right type of NoSQL Database In this article, we will gather knowledge about different NoSQL databases and choosing the correct database for a given problem or use case.
Software Engineering List of Top Users in CodeForces In this article, we will make a list of all the users of Codeforces and store their information in a JSON file. We will use the json and urlib.request library of python for the purpose.
Software Engineering File Hosting Service in Django In this article, we will learn to create a file hosting service webpage in Django wherein one can host their files on the local server and generate a shareable URL link to access the file.
Software Engineering <body> Learn about Body Tag </body> body tag defines the body of the webpage. All the basic content of a webpage including heading, paragraph are defined inside the body tag.
Software Engineering Hosting websites using GitHub We have demonstrated step by step how to host a static website using your public repository in GitHub for free.
Software Engineering <html> tag in HTML in HTML is the parent tag, that contains each and every element tags of the HTML document inside of it, except for the tag.
Software Engineering Basics of Hyper Text Transfer Protocol (HTTP) In this article, we have discussed about HTTP. HTTP stands for Hyper Text Transfer Protocol and is the backbone of the Internet.
Software Engineering Exploring the CodeForces API In this article, we will explore the Codeforces API. With codeforces API, one can get access to limited data from in machine-readable JSON format.
Software Engineering A static Portfolio Website in Django In this article, we will be creating a static Portfolio website using Django and understand the structure of the Django framework. This article would cover all the commands
Software Engineering Models in Django In this article, we will be learning about Models in Django and how the database system works in Django.
Software Engineering <Button> tag in HTML web pages Button are HTML elements that give a sense of click on webpages. Buttons can be formatted and styled using CSS. We can add javascript codes too to make the buttons interactive.
Software Engineering Developing static webpage application using Flask with no database In this article, we have built basic static webpage application in Flask with no database. This results in a high performance webpage with a lightweight web server which is the direct result of not adding a database.
Software Engineering Build a Static Website using Gatsby This is a step by step guide to build a static site using Gatsby. Gatsby is React based, GraphQL powered static website generator. It combines best of React, GraphQL, and Webpack.
Software Engineering Different types of Attribute Selectors in CSS It is possible to style HTML elements that have specific attributes or attribute values. The [attribute] selector is used to select elements with a specified attribute.