Skip to main content

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.

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.

Comments

Post a Comment

Popular posts from this blog

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!!!

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!!!

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:...