Search Bar using HTML, CSS and JavaScript
Every website needs a search bar through which a user can search the content of their concern on that page. We’re going to learn how to create one using only HTML, CSS, and JavaScript. Instead of getting into complex algorithms for finding related content, we’ll focus on a basic task—searching for specific words or phrases within text....
read more
Python | Build a REST API using Flask
Prerequisite: Introduction to Rest API...
read more
Simple Tic-Tac-Toe Game using JavaScript
In this article, we will create a Tic-Tac-Toe Game using JavaScript. We will be using validation checks to implement the game features. The UI is designed using CSS so it is easy to create. In the game, Player-1 starts playing the game and both players make their moves in consecutive turns. The player who makes a straight 3-block chain wins the game. This game is built on the front-end using simple logic and validation checks only....
read more
Top 10 Extensions for ReactJS in VSCode
To make your development quicker and life easier, install a number of the Visual Studio Extensions that square measure outlined below and create your development a lot of and a lot of power tools than the alternative....
read more
Top 10 Front-End Web Development Projects For Beginners
The best method to acquire any skill is to put it into practice by working on projects, however many people think they know everything after watching tutorials. However, this is incorrect; they do not create any projects on their own. All of these factors apply to Front-End Web Development as well; if you want to be a great Front-End Web Developer, constructing projects on your own will not only increase your confidence, but it will also progressively make your portfolio job-ready by adding projects that you will make....
read more
Create a Music Player using JavaScript
As streaming is increasingly being adopted by users, online media players have become essential for consuming media on the internet. Music players allow one to enjoy music in any browser and supports a lot of the features of an offline music player.We will be creating a music player with a clean user interface that can be used to play music in the browser. We will also implement features like seeking and volume control. HTML has several methods in the HTMLMediaElement interface that can be used to play audio files and control its playback without using any other library.We will start by creating the HTML layout first that defines the structure of the player, make it look good by styling using CSS and then write the player logic for all the functions in JavaScript....
read more
Login and Registration Project Using Flask and MySQL
Project Title: Login and registration Project using Flask framework and MySQL Workbench. Type of Application (Category): Web application. Introduction: A framework is a code library that makes a developer’s life easier when building web applications by providing reusable code for common operations. There are a number of frameworks for Python, including Flask, Tornado, Pyramid, and Django. Flask is a lightweight web application framework. It is classified as a micro-framework because it does not require particular tools or libraries. Pre-requisite: Knowledge of Python, MySQL Workbench and basics of Flask Framework. Python and MySQL Workbench should be installed in the system. Visual studio code or Spyder or any code editor to work on the application. Technologies used in the project: Flask framework, MySQL Workbench. Implementation of the Project: (1) Creating Environment Step-1: Create an environment. Create a project folder and a venv folder within....
read more
Create ToDo App using ReactJS
In this article, we will create a to-do app to understand the basics of ReactJS. We will be working with class based components in this application and use the React-Bootstrap module to style the components. This to-do list can add new tasks we can also delete the tasks by clicking on them. The logic is handled by a click event handler whenever the user clicks on a task it gets deleted from the list....
read more
QR Code Generator using HTML, CSS and jQuery
In this article, we will learn how to build a QR generator using HTML, CSS, and jQuery. A QR code generator is an application that stores any required textual data into a QR code which can be later scanned with a QR code scanner to reveal the stored information. This code generator consists of an input field and a button which are respectively used to take the input text and convert the entered text into a QR code....
read more
How to Make Dark Mode for Websites using HTML CSS & JavaScript ?
We will see how to create a dark mode for websites using HTML, CSS, and JavaScript. Dark mode, also known as black mode, dark theme, or night mode, features light-colored text and icons on a dark-colored background. This mode is easier on the eyes in low-light conditions, aiming to enhance readability by reducing the emitted light from device screens while still maintaining suitable color contrast ratios....
read more
Creating a Proxy Webserver in Python | Set 1
Socket programming in python is very user friendly as compared to c. The programmer need not worry about minute details regarding sockets. In python, the user has more chance of focusing on the application layer rather than the network layer. In this tutorial we would be developing a simple multi-threaded proxy server capable of handling HTTP traffic. It would be mostly based on the basic socket programming ideas. If you are not sure about the basics then i would recommend that you brush them up before going through this tutorial....
read more
JavaScript Project on Todo List
Todo Lists are the lists that we generally use to maintain our day-to-day tasks or list of everything that we have to do, with the most important tasks at the top of the list, and the least important tasks at the bottom. In this article, we are going to learn how to JavaScript Project on Todo List....
read more