Skip to content

Instantly share code, notes, and snippets.

@Raghavagr
Created February 9, 2021 17:41
#adding a heading Frame to library
headingFrame1 = Frame(root, bg="#FFBB00", bd=5)
headingFrame1.place(relx=0.2, rely=0.1, relwidth=0.6, relheight=0.16)
headingLabel = Label(headingFrame1, text="Welcome to \n Crazy_Tech Librray", bg="black",
fg="white", font=('Courier',15))
headingLabel.place(relx=0, rely=0, relwidth=1, relheight=1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment