Dia 25 de Abril
from tkinter import *
from PIL import Image, ImageTk
root = Tk()
root.geometry("750x600")
root.resizable(0, 0)
root.config(bg="#d9ead3")
root.title("25 de Abril")
root.resizable(0,0)
img1=ImageTk.PhotoImage(Image.open("imagem2.png"))
titulo = Label(text="25 de Abril",bg="#d9ead3",fg="#ff0000",font=("Arial","50","bold"))
titulo.place(relx=0.3,rely=0.05)
subtitulo = Label(text="Contra todos os Regimes Totalitários ",
bg="#d9ead3",fg="blue",font=("Arial","30","bold"))
subtitulo.place(relx=0.05,rely=0.2)
l_3 = Label(bg="#d9ead3")
l_3.place(relx=0.1,rely=0.3)
l_3.config(image=img1)
root.mainloop()

Imagem2
Comentários
Enviar um comentário