diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3c793272bcd97e307a30256940c80d55fb7a8243..cd44acb330ab8b9d9c1472299e7cc5cf06e0823a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -40,6 +40,7 @@ pages:
     - docker
   script:
     - ./gradlew run
+    - cp -r index.html public/
     - mkdir -p public/Tests_Results && cp -r build/reports/tests/test/* public/Tests_Results/
     - mkdir -p public/Jacoco && cp -r build/jacocoHtml/* public/Jacoco/
   artifacts:
diff --git a/index.html b/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..7d662c922bdacf6e243fee9256ca698aff35ab88
--- /dev/null
+++ b/index.html
@@ -0,0 +1,12 @@
+<html>
+<head>
+<title>Test Project web pages</title>
+</head>
+<body>
+<h3>Welcome to my super Test Project web pages</h3>
+<ul>
+<li><a href="http://denis.arrivault.pages.lis-lab.fr/Test_Project/Tests_Results/">See the unit tests report</a></li>
+<li><a href="http://denis.arrivault.pages.lis-lab.fr/Test_Project/Jacoco/">See the Jacoco coverage report</a></li>
+</ul>
+</body>
+</html>
\ No newline at end of file