0byt3m1n1
Path:
C:
/
wamp64
/
www
/
WaterCat
/
[
Home
]
File: test.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>WATER FOLKS</title> <style> /* CSS for menu bar */ .menu { background-color: #333; overflow: hidden; } .menu a { float: left; display: block; color: white; text-align: center; padding: 14px 16px; text-decoration: none; } .menu a:hover { background-color: #ddd; color: black; } /* CSS for introduction section */ .intro { padding: 50px; text-align: center; background-color: #f1f1f1; } /* CSS for scrolling pictures section */ .scrolling-pictures { width: 100%; overflow-x: scroll; white-space: nowrap; } .scrolling-pictures img { max-width: 100%; height: auto; } /* CSS for testimonial section */ .testimonial { padding: 50px; text-align: center; background-color: #f1f1f1; } /* CSS for admin, registration, and login options */ .options { text-align: center; padding: 20px; } </style> </head> <body> <div class="menu"> <a href="#">Home</a> <a href="#">About</a> <a href="#">Services</a> <a href="#">Contact</a> </div> <div class="intro"> <h2>Welcome to Our Website</h2> <p>This is the introduction section of our website. You can add your introduction text here.</p> </div> <div class="scrolling-pictures"> <img src="image1.jpg" alt="Image 1"> <img src="image2.jpg" alt="Image 2"> <img src="image3.jpg" alt="Image 3"> <!-- Add more images here --> </div> <div class="testimonial"> <h2>Testimonials</h2> <p>Here you can add testimonials from your customers.</p> </div> <div class="options"> <h2>Admin Panel</h2> <p>Add options for admin panel here.</p> <h2>Registration Panel</h2> <p>Add options for registration panel here.</p> <h2>Login</h2> <p>Add options for login here.</p> </div> </body> </html>