h4sci / h4sci-tasks

Tasks and Exercises
7 stars 0 forks source link

Block 3, Task 3: Explore GitHub Pages #11

Open mbannert opened 3 years ago

mbannert commented 3 years ago
  1. Create an own repository within your individual account.

  2. Take this minimal code snippet and store it into a file called index.html.

<html>

<head>
<title>Minimal</title>
</head>

<body>

YAY, I published a website on GitHub pages!!

</body>

</html>
  1. push that file into a folder docs/ inside your freshly created repository.

  2. activate github pages in the settings of your repo to run in main / docs mode.

IMPORTANT NOTE: add an empty file named, .nojekyll to the docs/ folder. This will disable the github actions render engine that converts .md to HTML.