BossBey File Manager
PHP:
8.3.6
OS:
Linux
User:
www-data
Root
/
var
/
www
/
html
/
mangroveholdings
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Mangrove Holdings</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; background-color: #f3ebde; display: flex; flex-direction: column; min-height: 100vh; } header { padding: 40px 20px; display: flex; justify-content: center; align-items: center; } .logo { max-width: 180px; height: auto; } main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px; } .video-container { max-width: 800px; width: 100%; aspect-ratio: 16/9; background-color: #f3ebde; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; } .video-container img { max-width: 400px; width: 100%; height: auto; object-fit: contain; } footer { padding: 60px 20px; text-align: center; } .location { color: #5a5a5a; font-size: 13px; } .description { color: #5a5a5a; font-size: 16px; max-width: 500px; margin: 0 auto; margin-bottom: 10px; line-height: 1.6; } </style> </head> <body> <header> <img src="logo.png" alt="Mangrove Holdings" class="logo"> </header> <main> <div class="video-container"> <img src="video2.gif" alt="Mangrove tree illustration"> </div> </main> <footer> <div class="description"> Quietly focused. Strategically agile. Decisively active. </div> <div class="location">New Delhi, India</div> </footer> </body> </html>
Save
Cancel