fix: correct link in README and add robots meta tag

- Corrected the hyperlink in the README file to remove an unnecessary character.
- Added a robots meta tag to the index.html file to preventsearch engines from
indexing or following the page.
This commit is contained in:
Thomas Brasdefer 2024-09-01 20:19:28 +02:00
parent 5b939b5afe
commit 77bb1af328
Signed by: tombdf
GPG Key ID: A047E76CC4582988
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# Portfolio
To view the website, click [here](#https://hexasec.io).
To view the website, click [here](https://hexasec.io).
## About it

View File

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow">
<title>Portfolio</title>
<link style="text/css" rel="stylesheet" href="style.css">
</head>