From 66a47f991bf56d43db022be6a19446fcac8a9c1c Mon Sep 17 00:00:00 2001 From: Roland Bernard <rolbernard@unibz.it> Date: Mon, 29 Mar 2021 17:23:05 +0200 Subject: [PATCH] Created files for the first lab assignment --- src/index.html | 12 ++++++++++++ src/team.html | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/index.html create mode 100644 src/team.html diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..e1e7d6f --- /dev/null +++ b/src/index.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <title>{ProjectName}</title> + </head> + <body> + <nav> + <a href="index.html">Home</a> + <a href="team.html">Team</a> + </nav> + </body> +</html> diff --git a/src/team.html b/src/team.html new file mode 100644 index 0000000..3918073 --- /dev/null +++ b/src/team.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <title>{ProjectName} - Our Team</title> + </head> + <body> + <nav> + <a href="index.html">Home</a> + <a href="team.html">Team</a> + </nav> + </body> +</html> -- GitLab