Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Images
:
contactus.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <!-- font --> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <!-- Bootstrap CSS --> <!-- Bootstrap JS (with Popper) --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <title>Chiac ASI</title> <link rel="icon" type="image/png" sizes="32x32" href="Images/favicon-32x32.png"> <!-- ✅ Correct Font Awesome CDN --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" integrity="sha512-Fo3rlrZj/kTcKU5eYOJtA2RZz8Ug5v8D6QqG8XqgrhF7qOdwJXZ1bsWhzBGlG8SRK3pW7YT8gVqIHklh3PR76g==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"> <!-- Your Custom CSS --> <link rel="stylesheet" href="style.css"> </head> <body> <nav class="navbar navbar-expand-lg navbar-light bg-transparent"> <div class="container custom-container navbars"> <a class="navbar-brand" href="index.php" style="font-family: 'Josefin Sans', sans-serif; font-weight: 500;"> <img src="Images/chiac-transparent-logo.png" alt="" width="140" height="80"> CHIAC ASI </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <!-- Menu items --> <?php $currentPage = basename($_SERVER['PHP_SELF']); ?> <ul class="navbar-nav ms-auto mb-2 mb-lg-0"> <li class="nav-item"> <a class="nav-link <?php if ($currentPage == 'technology.php') { echo 'active'; } ?>" href="technology.php">Technology</a> </li> <li class="nav-item"> <a class="nav-link <?php if ($currentPage == 'about-us.php') { echo 'active'; } ?>" href="about-us.php">About</a> </li> <li class="nav-item"> <a class="nav-link <?php if ($currentPage == 'contactus.php') { echo 'active'; } ?>" href="contactus.php">Contact</a> </li> <li class="nav-item"> <a class="nav-link <?php if ($currentPage == 'research.php') { echo 'active'; } ?>" href="research.php">Research</a> </li> <li class="nav-item"> <a class="nav-link <?php if ($currentPage == 'blog.php') { echo 'active'; } ?>" href="blog.php">Press and Blog</a> </li> </ul> </div> </div> </nav> <div class="container heading-control-problem contact-class"> <h1>Get in Touch</h1> </div> <section class="contact-section container custom-container"> <form class="contact-form" action="contact.php" method="POST"> <div class="form-group"> <label for="fname">Name *</label> <input type="text" id="fname" name="fname"> </div> <div class="form-group"> <label for="email">Email *</label> <input type="email" id="email" name="email"> </div> <div class="form-group"> <label for="org">Organisation</label> <input type="text" id="org" name="org"> </div> <div class="form-group"> <label for="message">Message</label> <textarea id="message" name="message" placeholder="Write your message here."></textarea> </div> <button type="submit" class="btn-submit">SEND MESSAGE</button> </form> </section> <div class="container Result-custom result-class" style="margin-bottom: 150px;"> <h1>Results</h1> <br> <p class="fs-4">There are 6 major scheming areas. We have brought scheming percentage to Zero for 4 out of 6 evaluations, 1 out of 6, there's significant reduction and, the remaining one is slightly reduced. We would love for you to see how far we've come. Please <a href="https://chiacadmin.github.io/Scheming.github.io/"> click here</a></p> </div> </body> </html> <?php // Include footer include 'footer.php'; ?>