<!DOCTYPE html> <html> <head> <meta charset= "utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Restore</title> <link rel="shortcut icon" href="images/restore.png"> <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=Permanent+Marker&family=Raleway:ital,wght@0,100;0,900;1,900&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href= "styles.css"> </head> <body> <section class="header"> <!-- Navigation bar --> <nav> <a href="index.html"><img src="images/restore.png" alt="RESTORE"></a> <div class="nav-links" id="navLinks"> <i class="fa fa-window-close" onclick="hideMenu()"></i> <ul> <li><a href="index.html">HOME</a></li> <li><a href="heal.html">HEAL</a></li> <li><a href="pricing.html">PRICING</a></li> <li><a href="feedback.html">FEEDBACK</a></li> </ul> </div> <i class="fa fa-bars" onclick="showMenu()"></i> </nav> <!-- Text in header --> <div class="text-box"> <h1>reSTORE</h1> <p>Your physical therapist digitized.</p> <a href="heal.html" class="home-btn">Start Healing!</a> </div> </section> <!-- Content of home page --> <section class="home-content"> <h1>Our Mission</h1> <p>Here at Restore, we understand just how detrimental even minor injuries can be. Staying mobile is a crucial part of keeping yourself healthy, so we want to do everything we can to ensure that your body is comfortable.</p> <p>Thus, on our site, we take you through every step of the way to restore your body and mind––whether it’s preventing future complications by frequently stretching, strengthening weak appendages through light exercise, or healing recent injuries with slow movement, our custom-generated circuits will render you as good as new!</p> </section> <!-- Join footer --> <section class="join"> <h1>Sign up today for a lifetime of mobility!</h1> <a href="pricing.html" class="home-btn">SEE PRICING</a> </section> <script src="script.js"></script> </body> </html>