Skip to the content.

Home / Step 3

Step 3: Create Multiple Pages

GitHub Pages with Jekyll supports .md files as pages.

  1. Create index.md (Homepage)

     # Welcome to My Website 🚀  
     - [About](about.md)  
     - [Projects](projects.md)
    
  2. Create about.md (About Page)

     # About Me  
     I am a web developer passionate about coding.
    
  3. Create projects.md (Projects Page)

     # My Projects
     - [Project 1](https://github.com/user/project1)
     - [Project 2](https://github.com/user/project2)
    

These pages will be automatically converted to a website.

Next: Step 4