X7ROOT File Manager
PHP:
7.4.33
OS:
Linux
User:
br4sil
Root
/
home
/
br4sil
/
public_html
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.php
<!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>GRAFICA TEMPO - GETEP - PRODUTOS E SERVIÇOS</title> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Amaranth:wght@400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"/> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; background: linear-gradient(to right, #f2f2f2, #e0e0e0); color: #333; display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 20px; } .container { background: #fff; max-width: 700px; width: 100%; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); text-align: center; } .logo img { width: 180px; height: auto; } h1 { font-family: 'Amaranth', sans-serif; font-size: 24px; margin: 20px 0; color: #005baa; } select { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid #ccc; margin: 20px 0; font-size: 16px; cursor: pointer; background-color: #f9f9f9; } .contact { margin: 20px 0; font-size: 16px; } .contact a { text-decoration: none; color: #005baa; display: inline-flex; align-items: center; gap: 8px; } .contact a:hover { color: #c7101c; } .app-download img { margin: 15px 0; width: 200px; height: auto; } .footer { font-size: 14px; color: #555; margin-top: 30px; } .footer a { color: #005baa; text-decoration: none; } @media (max-width: 480px) { .container { padding: 20px; } h1 { font-size: 20px; } .logo img { width: 150px; } .app-download img { width: 160px; } } </style> </head> <body> <div class="container"> <div class="logo"> <a href="index.php"><img src="log.png" alt="Logo" /></a> </div> <h1>Selecione o Estado</h1> <form method="post" action="busca.php" target="_top"> <select name="clicklist" onchange="top.location.href=this.form.clicklist.options[this.form.clicklist.selectedIndex].value"> <option selected disabled>SELECIONE ESTADO</option> <option value="/maranhao">MARANHÃO</option> <option value="/para">PARÁ</option> <option value="/rondonia">RONDÔNIA</option> </select> </form> <div class="contact"> <a href="contato.html" target="_blank"><i class="fas fa-envelope"></i> Contato</a> </div> <div class="app-download"> <a href="http://applink.com.br/brasillistas"> <img src="app.png" alt="Baixe o app" /> </a> </div> <div class="footer"> Desenvolvido por: <a href="http://www.senhorinihost.com.br/" target="_blank">Senhorini Host</a> </div> </div> </body> </html>
Save
Cancel