Posts

Admin Login Page Using HTML and CSS

Image
 Admin Login Page Using HTML and CSS HTML CODE <!DOCTYPE html > <html lang = "en" > <head>     <meta charset = "UTF-8" >     <meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     <meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     <title> Document </title>     <link rel = "stylesheet" href = "style.css" > </head> <body>     <div class = "container" >         <div class = "login_form" >             <form action = "" method = "post" >                 <h2> Admin Login </h2>                 <input type = "text" >                 <input type = "password" >              ...

How to make simple bill maker by using python tkinter

 How to make simple bill maker by using python tkinter from tkinter import * from tkinter import ttk from tkinter import messagebox import os , sys import tempfile class Store :     def __init__ ( self , window ):         self . win = window         self . categories =[ "Kurti" , "Legis" , "Shirt" , "Jeans" ]         self . kurti =[ "Kurti1" , "Kurt2" , "Kurt3" , "Kurt4" ]         self . legis =[ "Legis1" , "Legis2" , "Legis3" , "Legis4" ]         self . shirt =[ "Shirt1" , "Shirt2" , "Shirt3" , "Shirt4" ]         self . jeans =[ "Jeans1" , "Jeans2" , "Jeans3" , "Jeans4" ]         #Create Variable         self . cname = StringVar ()         self . cmob = StringVar ()         self . cbill = StringVar ()         self . price = IntVar ()   ...

Calculate Compound Interest in JavaScript

Image
 Calculate Compound Interest in JavaScript HTML CODE <!DOCTYPE   html > <html   lang = "en" > <head>      <meta   charset = "UTF-8" >      <meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      <meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      <title> Document </title> </head> <body>      <table>          <tr>              <td> Enter Principle </td>              <td>                  <input   type = "text"   name = ""   id = "p" >   ...

HCF LCM Finder in JavaScript

Image
 HCF LCM Finder in JavaScript HTML CODE <!DOCTYPE   html > <html   lang = "en" > <head>      <meta   charset = "UTF-8" >      <meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      <meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      <title> Document </title> </head> <body>      <table>          <tr>              <td> Enter 1st Number </td>              <td>                  <input   type = "text"   id = "n1" >       ...

Make a GST Calculator using HTML and JavaScript

Image
 Make a GST Calculator using HTML and JavaScript  HTML <!DOCTYPE   html > <html   lang = "en" > <head>      <meta   charset = "UTF-8" >      <meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      <meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      <title> Document </title> </head> <body>      <table>          <tr>              <td> Product Name </td>              <td>                  <input   type = "text"   id = "pn" >     ...