Skip to content

Instantly share code, notes, and snippets.

@Raghavagr
Created February 9, 2021 17:41

Revisions

  1. Raghavagr created this gist Feb 9, 2021.
    6 changes: 6 additions & 0 deletions headingFrame.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    #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)