Skip to main content

Posts

Create a food ordering website

  Create a food ordering website Hey guys today in this blog we have created a food ordering website it works to a great extent and the order now button also works. Like, Share, and Subscribe. Source Codes 👇 https://drive.google.com/folderview?i... ​ NOTE: in the source code I have provided you with the drive link of text files open these files In Notepad and copy the codes and paste them into your VS Code.
Recent posts

How to use font awesome icons in your website!!!

  Use font awesome in your website     Hello viewers, today in this blog we will see how you can use your font awesome icons in your website even when you don't have internet. Video tutorial of how to use font awesome icons in your website:- Steps for performing the job:- Step 1:- Include the script in your head tag- <script scr="https://kit.fontawesome.com/a076d05399.js"></script> Step 2:- Visit the website to choose your desirable icon- https://fontawesome.com/icons?d=gallery&p=2 Step 3:- Hover ME Paste the code of your icon and you are done with it. Hope you have liked the video please subscribe and share!!! Thank You!!! Keep Learning!!!

Add hover effects to a button | Pure HTML and CSS

 Add hover effects to a button Hello viewers, welcome back, today in this blog we will see how you can just add hover effects to your button in your website, using just HTML and CSS. Video tutorial of how to add hover effects to a button using HTML and CSS: Hope you have liked the video, please subscribe and share the video. Thank You!!! Keep Learning!!!

Embed a 3D model of Earth into your website

  Embed a 3D model of Earth into your website Hello viewers, today in this blog we will see how you can just Embed a 3D model of Earth into your website. Video Tutorial of how to Embed a 3D model of Earth into your website. Source codes of embedding Earth's 3D model:- <iframe src='https://solarsystem.nasa.gov/gltf_embed/2393' width='100%' height='450px' frameborder='0' /> Add the above code into your website ThankYou Keep Learning!!!

Make an ATM Machine in Python

Make an ATM Machine in Python Hello viewers, today in this blog we will see how you can make an ATM Machine with the help of python. Copy the source codes from below. Python File: main.py import time print("Welcome to the ATM Machine Created By Naman Kalyan") password = 1234 #taking atm pin from user pin = int(input("Enter your atm pin ")) #user account balance balance = 5000 #checking pin is valid or not if pin == password: #loop will run user get free while True: #Showing info to user print(""" 1 == Balance 2 == Withdraw Balance 3 == Deposit Balance 4 == Exit """ ) try: #taking an option from user option = int(input("Please enter your choice ")) except: print("Please enter valid option ") #for option 1 if option == 1:

Write in console using Java Script

  W rite in the console using Java Script   Hello viewers, today in this blog we will see how you can write in your console bar using JavaScript . Below is the video tutorial on how to write in a console using JavaScript. Hope you have liked this video.

Python Programming

  Python Programming Python  is an interpreted, high-level and general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant indentation. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects. Python can be easy to pick up whether you're a first-time programmer or you're experienced with other languages. The following pages are a useful first step to get on your way to writing programs with Python! Python is developed under an OSI-approved open source license, making it freely usable and distributable, even for commercial use. Python's license is administered by the  Python Software Foundation .