PYTHON PROJECT

 from tkinter import *

app=Tk()

h=app.winfo_screenheight()

w=app.winfo_screenwidth()

app.configure(height=h,width=w,bg="green")

app.title("Employee Registration")

l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg="white",fg="black",width=23)

l1.place(x=580,y=20)

l2=Label(app,text="Employee ID",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w")

l2.place(x=200,y=100)

e2=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato")

e2.place(x=150,y=150)

l3=Label(app,text="Employee Name",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w")

l3.place(x=200,y=200)

e3=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato")

e3.place(x=150,y=250)

l4=Label(app,text="Employee Age",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w")

l4.place(x=200,y=300)

e4=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato")

e4.place(x=150,y=350)

l5=Label(app,text="Employee Designation",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w")

l5.place(x=180,y=400)

e5=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato")

e5.place(x=150,y=450)

l6=Label(app,text="Employee Place",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w")

l6.place(x=200,y=500)

e6=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato")

e6.place(x=150,y=550)

l7=Label(app,text="ENTER ID",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w")

l7.place(x=700,y=100)

e7=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato")

e7.place(x=650,y=150)


Comments

Popular posts from this blog

CONVERTING TUPLE INTO LIST AND LIST INTO TUPLE