JSFiddle - React, Tailwind, and code Playground

by Abhishek27Sharma

HTML

<html>
  <head>
    <title>HTML</title>
  </head>
  <body>
    <div class="bodycontainer">
      <footer>
        <div class="footerlogo">
          <a href="#"
            ><img
              src="https://www.logodesign.net/assets/images/new-ui/logo-category-abstract-logo.png"
              alt="Logo"
              width="150px"
              height="200px"
          /></a>
        </div>
        <div class="footercontent">
          <p>© 2023 All rights reserved.</p>
          <ul>
            <a href="#"><li>Terms and Conditions</li></a>
            <a href="#"><li>Privacy Notice</li></a>
            <a href="#"><li>Cookie Discolure</li></a>
          </ul>
        </div>
      </footer>
    </div>
  </body>
</html>