Software-Dev-Project / Archive / Sample / templates / landingPage.html
landingPage.html
Raw
<!Doctype html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
    <title>Welcome to A Love Letter to the Game Love Letter</title>
    <link rel="icon" type="image/x-icon" href="../static/images/favicon.png">
</head>

<body>
    <nav class="navbar sticky-top navbar-expand-lg bg-body-tertiary">
        <div class="container-fluid">
            <img alt="Brand" src="../static/images/FightingMongoosesLogo.jpeg" height="5%" width="5%">
            <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">
                <ul class="navbar-nav me-auto mb-2 mb-lg-0">
                    <li class="nav-item">
                        <a class="nav-link active" aria-current="page" href="/">Home</a>
                    </li>
                    <li class="nav-item dropdown">
                        <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
                            aria-expanded="false">
                            Options
                        </a>
                        <ul class="dropdown-menu">
                            <li><a class="dropdown-item" href="#">Action</a></li>
                            <li><a class="dropdown-item" href="#">Another action</a></li>
                            <li>
                                <hr class="dropdown-divider">
                            </li>
                            <li><a class="dropdown-item" href="#">Something else here</a></li>
                        </ul>
                    </li>
                </ul>
                <form class="d-flex" role="search">
                    <input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
                    <button class="btn btn-outline-success" type="submit">Search</button>
                </form>
            </div>
        </div>
    </nav>
    <div class="p-3 mb-2 bg-info text-white">
        <h1>Introduction</h1>
        <p>This project was suggested by group member Sidney Dean Egan for our semester project. The core concept is to
            create a web-integrated game for multiplayer online play of a clone/variation on the card game Love Letter
        </p>
        <div class="loveletterpic">
            <img src="../static/images/DonutChamp.jpg" class="img-fluid" style="height:90vh; width:100vh;">
            <br>
            <h1>Game Description</h1>
            <p>[Description goes here]</p>
            <h1>Game Rules</h1>
            <p>[Rules goes here]</p>
            <h1>Team Members</h1>
            <p>To see a list of team members, please see the <a href="/aboutus">about us</a> page</p>
            <h1>Game Rules</h1>
            <p>[Rules goes here]</p>
        </div>
        <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
            integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous">
        </script>
</body>

</html>