Skip to content
Snippets Groups Projects
Select Git revision
  • 822e27fce3e1e194e048d7b782fa05983773a1bc
  • development default protected
  • 26-link-booking-page-to-server-and-database
  • As-a-user-I-want-to-view-information-of-all-locations-available
  • 26-link-booking-page-to-server-and-database-2
  • 26-link-booking-page-to-server-and-database-3
  • 26-link-booking-page-to-server-and-database-4
  • 28-fixing-bugs-and-issues
  • 2-as-a-user-i-want-to-be-authorized-if-i-am-a-member
  • 25-adding-a-basic-locations-template-route
  • 14-as-a-user-i-want-to-view-a-list-of-all-locations-available
  • 23-as-a-user-i-want-to-view-information-of-all-locations-available
  • page-for-all-workingSpaces
  • 24-hotfix-development-directory
  • 13-as-a-moderator-i-want-to-be-able-to-amend-and-remove-existing-locations-spaces-features
  • 7-as-a-user-i-want-to-see-all-of-the-working-spaces-available
  • 22-hotfix-templating-directory
  • 15-as-a-user-i-want-to-find-out-what-tramshed-is-so-that-i-can-access-their-working-spaces
  • 3-as-a-moderator-i-want-to-be-able-to-add-new-locations-spaces-features
  • 7-as-a-user-i-want-to-see-all-of-the-working-spaces-available-2
  • 16-as-a-user-i-want-to-be-able-to-find-information-about-tramshed-on-a-webpage-2
21 results

landingpage.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    landingpage.html 3.48 KiB
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <header>
      <nav class="navbar navbar-expand-sm bg-dark navbar-dark">
        <div class="container-fluid">
          <ul class="navbar-nav">
            <li class="nav-item">
              <a class="nav-link" href="locations.html">Coworking locations</a>
            </li>
           <li class="nav-item">
              <a class="nav-link" href="Manage_Coworking_Spaces.html">Manage locations</a>
            </li>
          </ul>
        </div>
      </nav>
    </header>
    <header class="masthead bg-dark text-white text-left">
      <div class="container-fluid">
          <img id="logo" src="Media/logo.png"/>
          <h1 id="header">Tramshed Tech</h1>
      </div>
    </header>
    <body>
      <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
      <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js" ></script>
      <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
      <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=Sora:wght@800&display=swap" rel="stylesheet">
      <link rel="stylesheet" href="CSS/landingstyle.css">
      <title>Tramshed Tech</title>
      <img id="tramshed" src="Media/tramshed.jpg">
      <div class="bg-dark p-3">
        <div id="buttons" class="flex-container">
              <button onclick="window.location.href='locations.html';" type="button" class="btn btn-light">
                <span class="spinner-grow spinner-grow-sm"></span>
                View Locations
              </button>
              <br>
              <div class="dropdown">
                <button class="btn btn-light dropdown-toggle" type="button" id="dropdownMenubutton" data-bs-toggle="dropdown">Socials</button>
                <ul class="dropdown-menu" id="dropdownmenu" aria-labelledby="dropdownMenubutton">
                  <li><button class="dropdown-item" type="button" onclick="window.location.href='https://www.linkedin.com/company/tramshed-tech';" target="_blank" rel="noopener" class="footer-social-media-icon"> <img class="no-border-radius" src="https://cdn.tramshedtech.co.uk/static/img/home/Linkedin%20Logo.svg" alt="LinkedIn"> LinkedIn</button></li>
                  <li><button class="dropdown-item" type="button" onclick="window.location.href='https://www.facebook.com/tramshedtech';" target="_blank" rel="noopener" class="footer-social-media-icon"> <img class="no-border-radius" src="https://cdn.tramshedtech.co.uk/static/img/home/Facebook%20Logo.svg" alt="Facebook"> Facebook</button></li>
                  <li><button class="dropdown-item" type="button" onclick="window.location.href='https://twitter.com/TramshedTech';" target="_blank" rel="noopener" class="footer-social-media-icon"> <img class="no-border-radius" src="https://cdn.tramshedtech.co.uk/static/img/home/Twitter%20Logo.svg" alt="Twitter"> Twitter</button></li>
                  <li><button class="dropdown-item" type="button" onclick="window.location.href='https://www.instagram.com/tramshedtech/?hl=en';" target="_blank" rel="noopener" class="footer-social-media-icon"> <img class="no-border-radius" src="https://cdn.tramshedtech.co.uk/static/img/home/Instagram%20Logo.svg" alt="Instagram"> Instagram</button></li>
                </ul>
              </div>
          </div>
        </div>
    </body>
    </html>