Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # pip install python-fasthtml
- from fasthtml.common import FastHTML, serve, Html, Head, Title, Body, Div, A, Img, Br
- app = FastHTML()
- @app.get('/')
- def home():
- pagina = Html(
- Head(Title('Mi Proyecto')),
- Body(
- Div('Bienvenido ! ',
- A('Web', href='http://nubecolectiva.com'),
- Br(),
- Img(src="https://nubecolectiva.com/img/logo.png"),
- cls='mi-clase'
- )
- )
- )
- return pagina
- serve()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement