from tkinter import *
window = Tk()
#window title
window.title("Aimtocode")
#window Frame Size
window.geometry("700x450")
#background color
window.configure(bg="orange red")
#center this label
Label (window, text="Welcome to Aimtocode", bg="orange red", fg="white", font="none 24 bold").grid(row=0, column=0)
Label (window, text="An online free programming languages learning portal:", bg="orange red", fg="white", font="none 12 bold").grid(row=1, column=0, sticky=W)
#calling mainloop
window.mainloop()