0byt3m1n1
Path:
C:
/
wamp64
/
www
/
Crops
/
[
Home
]
File: front.php
<!DOCTYPE html> <html> <head> <style> /* Styles for the body and background */ body { background: url("photo.jpg") no-repeat center center fixed; background-size: cover; } /* Styles for the container */ .container { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; } /* Styles for the logo */ .logo { width: 100px; height: 100px; /* Add any additional styling for your logo */ } /* Styles for the top-left section */ .top-left { position: absolute; top: 0; left: 0; display: flex; flex-direction: column; /* Change the flex-direction to column */ align-items: flex-start; /* Align the logo and text to the top-left corner */ margin-bottom: 30px; /* Add spacing between the top-left section and other content */ } /* Styles for the text below the logo */ .logo-text { color: #ffffff; font-size: 15px; margin-top: 5px; /* Add some spacing between the logo and text */ text-align: left; } /* Styles for the footer */ .footer { background-color: #333; color: #fff; padding: 20px; text-align: center; /* Add any additional styling for your footer */ } h1 { color: #ffffff; font-size: 50px; } /* Styles for the "Get Started" button */ .get-started-button { display: inline-block; padding: 12px 24px; background-color: #007bff; color: #fff; text-decoration: none; border-radius: 4px; /* Add any additional styling for your button */ } </style> </head> <body> <div class="container"> <div class="top-left"> <img src="logo.jpg" alt="Logo" class="logo"> <h2 class="logo-text">KSCSTE-CWRDM</h2> </div> <H1>CWRDM-Integrated Crop Management System(ICMS)</h1> <a href="index.php" class="get-started-button">Get Started</a> </div> <footer class="footer"> <p>The Executive Director,<br> Centre for Water Resources Development and Management (KSCSTE- CWRDM)<br> Kozhikode- 673571, Kerala<br>© 2023 CWRDM. All rights reserved.</p> </footer> </body> </html>