Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Radiology Information System</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <nav> <div class="logo">Radiology IS</div> <ul> <li><a href="#home">Home</a></li> <li><a href="#features">Features</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#login">Login</a></li> </ul> </nav> </header> <section id="home"> <div class="hero"> <h1>Welcome to the Radiology Information System</h1> <p>Your one-stop solution for managing radiology workflows and patient records.</p> <a href="#features" class="btn">Explore Features</a> </div> </section> <section id="features"> <h2>Features</h2> <div class="feature-grid"> <div class="feature-item"> <h3>Patient Portal</h3> <p>Register, book appointments, and view reports with ease.</p> </div> <div class="feature-item"> <h3>Radiologist Dashboard</h3> <p>Access patient data, track imaging progress, and create diagnostic reports.</p> </div> <div class="feature-item"> <h3>Admin Panel</h3> <p>Manage users, monitor system performance, and ensure compliance.</p> </div> </div> </section> <section id="contact"> <h2>Contact Us</h2> <form action="/submit" method="POST"> <label for="name">Name:</label> <input type="text" id="name" name="name" required> <label for="email">Email:</label> <input type="email" id="email" name="email" required> <label for="message">Message:</label> <textarea id="message" name="message" required></textarea> <button type="submit">Send</button> </form> </section> <footer> <p>© 2025 Radiology Information System. All rights reserved.</p> </footer> </body> </html>
Leave a Comment