Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

Webserver1/Ovningar/Quiz/

account.php
create_quiz.js
create_quiz.php
fetch_table.php
frontpage.php
header.php
login.php
quiz.php
quiz_answer_finished.php
quiz_creation_finished.php
signup.php
style.css

header.php

19 lines ASCII Windows (CRLF)
<!-- header -->
<header id="top">
  <div class="center-container">
    <h1 class="title">
      <a href="frontpage.php">Quiz Cross</a>
    </h1>
  </div>

  <!-- navigation menu -->
  <nav class="navmenu">
    <a href="frontpage.php">Start</a>
    <a href="create_quiz.php">Skapa quiz</a>
    <!-- <a href="leaderboard.php">Topplista</a> -->
  </nav>

  <div class="center-container">
    <a href="account.php"><img src="./../../Media/ikoner/account_circle_black.svg" alt="" id="account-icon"></a>
  </div>
</header>