<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Emily's suggested books</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> </head> <body style="background-color: white;"> <div class="pricing-header px-4 py-4 pt-md-5 pb-md-3 mx-auto text-left"> <h1 class="display-4">Emily's Book Suggestions</h1> </div> <div> <!--From https://getbootstrap.com/docs/4.4/components/navbar/--> <nav class="navbar fixed-top navbar-expand-lg navbar-light" style="background-color:lavenderblush;" style="color: navy;"> <a class="navbar-brand" href="index.html">Emily Anderson Yoga</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNavAltMarkup"> <div class="navbar-nav"> <a class="nav-item nav-link active" href="index.html">Home <span class="sr-only">(current)</span></a> <a class="nav-item nav-link" href="About me.html">About Emily</a> <a class="nav-item nav-link" href="Books.html">Suggested Books</a> <a class="nav-item nav-link" href="Contact.html">Contact Emily</a> </div> </div> </nav> </div> <div class="d-md-flex flex-md-equal w-80 my-md-3 pl-md-3"> <div class="mr-md-3 pt-3 px-3 pt-md-6 px-md-5 text-left text-grey overflow-hidden" style = "background-color: white;"> <div class="my-3 py-3"> <p class="lead" style = "color: grey;">There are so many wonderful books about yoga and I encourage you to discover your own favorites (and please do share them with me!). A few of my top picks when starting out on your yoga journey are: <dl class="lead" style="color: grey;"> <dt><a href = https://www.amazon.com/Heart-Yoga-Developing-Personal-Practice/dp/089281764X> The Heart of Yoga, T. K. V. Desikachar</a></dt> <dd> This book was required reading for my yoga teacher training. It is a truly wonderful book, if you are intrigued to know more about the philosophy of yoga - teachers cannot get into this level of detail in a 60 minute class! </dd> <dt><a href = https://www.amazon.com/Power-Now-Guide-Spiritual-Enlightenment-ebook/dp/B002361MLA>The Power of Now, Eckhart Tolle</a></dt> <dd> This book is an amazing overview of what living in the now really means. It changed my outlook on life. It may not be a book that resonates with everyone, but I think it is at least worth a read. </dd> <dt><a href = https://www.amazon.com/Radical-Simplicity-John-Main-ebook/dp/B00EZS5SVO/ref=sr_1_1?keywords=radical+simplicity+main&qid=1580691852&sr=8-1>Radical Simplicity, John Main</a></dt> <dd>This is a short but valuable introduction to meditation and how to start a practice. If you are curious about meditation, this is a good place to start!</dd> </dl></p> </div> </div> </div> <footer>© Emily Anderson Yoga</footer> </body> </html>