Here you can see the specific features of the label one by one.
Example:
from tkinter import *
window = Tk()
window.title("Access Point")
window.geometry("800x450+500+86")
window.config(bg="#FF6103")
label1 = Label(window, text="Access Point Options", bg="white", fg="red", font=("helvetica", 20,"bold"), width=30,height=7, relief="sunken")
label1.pack(pady=20)
label1.pack(pady=20)
Post a Comment