Posts by Julihermes Carlos • 63 points
3 posts
-
0
votes5
answers48166
viewsA: How to increase or decrease the div proportional to 720x540?
If your slide is an image you can put the img with width: 100% and height: auto, would look like this: img { width: 100%; height: auto; } But if it’s not an image, if it’s, say, a div which contains…
-
0
votes3
answers1538
viewsA: Download event problem in "href"
For a file to be accessed through a link, you need to send the correct path to it, follow example. You informed that the site is at /var/www/html/ligacoes, you probably access the browser by the url…
-
6
votes1
answer2008
viewsQ: What is the best way to email with HTML in Django?
I’m a beginner in Python and Django and in the project I’m doing for study, I send an email, which has an HTML template. I was able to send an HTML email using EmailMessage: msg =…