ref: master
./patrocinio.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
<!doctype html> <html> <head> <title>PatrocĂnio - SASPI</title> <link rel="stylesheet" type="text/css" href="estilo.css"> </head> <body> <main> <div class="container"> <div class="mb-30"> <header> <h1 class="logo">SASPI</h1> </header> </div> <div> <h2 class="text-center"> PatrocĂnio </h2> </div> <div class="flex flex-row justify-between items-center"> <div class="flex flex-column bloco items-center"> <img src="img/intel.png" alt="Intel"> <h2>Intel</h2> </div> <div class="flex flex-column bloco items-center"> <img src="img/ford.png" alt="Ford"> <h2>Ford</h2> </div> </div> <div class="flex flex-row justify-between mt-20"> <div class="flex flex-column bloco items-center"> <img src="img/vans.png" alt="Vans"> <h2>Vans</h2> </div> <div class="flex flex-column bloco items-center"> <img src="img/mcdonalds.png" alt="McDonalds"> <h2>McDonalds</h2> </div> </div> <div class="voltar"> <a href="principal.html">Voltar</a> </div> <footer class="text-center"> <p>© 2024</p> </footer> </main> </body> </html> |