Apply for Zend Framework Certification Training

Python





 

 

 

 

 

from tkinter import *
base = Tk()
base.geometry('600x600')
frame1 = Frame(base, highlightbackground="blue", highlightthickness=2)
frame1.pack(padx=20, pady=20)
base.title("Registration form")
label_1 = Label(base,text="Registration form",width=20,font=("bold",20)).place(x=170,y=70)
label_2 = Label(base,text="First name",width=20,font=("bold",15)).place(x=100,y=150)
input_2 = Entry(base).place(x=340,y=150)
label_3 = Label(base,text="Last name",width=20,font=("bold",15)).place(x=100,y=200)
input_3 = Entry(base).place(x=340,y=200)
label_4 = Label(base,text="Mobile no",width=20,font=("bold",15)).place(x=93,y=250)
input_4 = Entry(base).place(x=340,y=250)
label_4 = Label(base,text="Email ",width=20,font=("bold",15)).place(x=80,y=300)
input_4 = Entry(base).place(x=340,y=300)

Button(base, text="Registration", font=("Calibri",12,"bold")).place(x=240,y=350)

base.mainloop()

< First Getting Started With CodeIgniter URL Routing >



Ask a question



  • Question:
    {{questionlistdata.blog_question_description}}
    • Answer:
      {{answer.blog_answer_description  }}
    Replay to Question


Back to Top