Skip to content
Snippets Groups Projects
Select Git revision
  • 86a4f489e02b3caa3700ce9e18623d43dacddb56
  • main default protected
  • bugfix/fix-routing
  • bugfix/fix-html-and-css
  • bugfix/test
  • feature/add-signup-validation
  • feature/add-update-information-validator
  • feature/add-login-validator
  • feature/add-payment-validator
  • feature/add-admin-view
  • feature/add-orders-html
  • bugfix/fix-html-feedback
  • chore/refacto-code
  • feature/add-update-user-html
  • feature/add-product-html
  • feature/add-card-html
  • feature/add-sign-up-html
  • feature/add-login-html
  • bugfix/fix-pop-up
  • feature/add-routings-configuration
  • feature/add-cards-html
21 results

app.module.ts

Blame
  • Forked from Shop Sphere / frontend
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.html 2.04 KiB
    <!doctype html>
    <html>
        <head>
            <link rel="icon" href="favicon.svg"/>
            <link href="/bootstrap.min.css" rel="stylesheet" 
            crossorigin="anonymous">
    
            <title>La revanche des lettres</title>
        </head>
        <body>
            <div class="navbar navbar-dark bg-dark">
                <div class="container">
                    <a href="/" class="navbar-brand">
                        <img src="favicon.svg" alt="favicon">
                        <strong>La revanche des lettres</strong>
                    </a>
                </div>
            </div>
            <div class="container" id="content">
                <br>
                <table class="table table-striped table-hover">
                    <thead>
                        <tr>
                            <th>Longueur</th>
                            <th>Thème</th>
                            <th>Difficulté</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>5 lettres</td>
                            <td>Littérature</td>
                            <td>&#9733;&#9733;&#9733;</td>
                            <td><a href="level.html">Démarrer</a></td>
                        </tr>
                        <tr>
                            <td>6 lettres</td>
                            <td>Sciences</td>
                            <td>&#9733;&#9733;&#9733;&#9733;</td>
                            <td><a href="level.html">Démarrer</a></td>
                        </tr>
                        <tr>
                            <td>6 lettres</td>
                            <td>Culture générale</td>
                            <td>&#9733;&#9733;&#9733;&#9733;&#9733;</td>
                            <td><a href="level.html">Démarrer</a></td>
                        </tr>
                        <tr>
                            <td>7 lettres</td>
                            <td>Géographie</td>
                            <td>&#9733;&#9733;&#9733;&#9733;&#9733;</td>
                            <td><a href="level.html">Démarrer</a></td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </body>
    </html>