-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin-Lab4-normalize_results.php
38 lines (37 loc) · 1.32 KB
/
Admin-Lab4-normalize_results.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NormalizeResults</title>
<link rel="stylesheet" href="./css/main.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
</head>
<body>
<?php
include "Admin-menu.php";
?>
<main class="section">
<div class="container">
<h2 class="title-1">Choose a test</h2>
<ul class="professions" id="professions">
<li class="profession">
<a href="Admin-Lab4-nr_chart.php">
<img src="./img/green.jpeg" alt="Test img" class="img">
<h3 class="profession__title">Color Test</h3>
</a>
</li>
<li class="profession">
<a href="Admin-Lab4-nr_chart.php">
<img src="./img/green.jpeg" alt="Test img" class="img">
<h3 class="profession__title">Color Test</h3>
</a>
</li>
</ul>
</div>
</main>
<script src="./js/app.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>