-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing_navigator.html
58 lines (46 loc) · 2.2 KB
/
testing_navigator.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<!-- The document type declaration for HTML5 -->
<html lang="en">
<!-- The root element of the HTML page, with the language set to English -->
<head>
<!-- The head element contains meta information and links to stylesheets and scripts -->
<meta charset="UTF-8">
<!-- Specifies the character encoding for the HTML document -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Makes the website responsive by setting the viewport to the device's width and initial zoom level -->
<title>Testing Navigation</title>
<!-- The title of the HTML document -->
<link rel="stylesheet" href="css/test_css.css"/>
<!-- Linking to an external stylesheet for styling the HTML document -->
</head>
<body>
<!-- The body element contains the content of the HTML document -->
<h1 class="style-heading">Testing Section</h1>
<!-- Main heading for the webpage -->
<h3 class="style-subheading" style="text-align: center">In this part of the application the User has the option to test the main functionalities of the application.</h3>
<!-- Subheading explaining the purpose of the testing section -->
<br>
<!-- Line break for spacing -->
<!--Link to test_list.html-->
<a href="test_list.html" class="link_buttons">Test-List</a>
<!-- Navigation link to the Test-List page -->
<!--Link to test_start.html-->
<a href="test_start.html" class="link_buttons">Test-Start</a>
<!-- Navigation link to the Test-Start page -->
<!--Link to test_question.html-->
<a href="test_question.html" class="link_buttons">Test-Question</a>
<!-- Navigation link to the Test-Question page -->
<!--Link to test_answer.html-->
<a href="test_answer.html" class="link_buttons">Test-Answer</a>
<!-- Navigation link to the Test-Answer page -->
<!--Link to test_score.html-->
<a href="test_score.html" class="link_buttons">Test-Score</a>
<!-- Navigation link to the Test-Score page -->
<!--Link to test_leaderboard.html-->
<a href="test_leaderboard.html" class="link_buttons">Test-Leaderboard</a>
<!-- Navigation link to the Test-Leaderboard page -->
<!--Link back to landing page-->
<a href="index.html" class="back_to_index">Back to Landing page</a>
<!-- Navigation link to the main landing page -->
</body>
</html>