https://github.com/se7en69/portfolio.github.io
portfolio website
https://github.com/se7en69/portfolio.github.io
Last synced: 3 months ago
JSON representation
portfolio website
- Host: GitHub
- URL: https://github.com/se7en69/portfolio.github.io
- Owner: se7en69
- Created: 2023-05-01T01:18:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-02T19:28:46.000Z (11 months ago)
- Last Synced: 2025-01-25T00:17:02.897Z (4 months ago)
- Language: HTML
- Size: 6.43 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Documentation for GitHub Portfolio Site
This documentation explains the process of creating a GitHub portfolio site using the provided HTML code.
Prerequisites:
- A GitHub account
- Basic knowledge of HTML, CSS, and GitSteps:
1. Create a new repository on GitHub by clicking on the "New" button on the main page of your account.
2. Give the repository a name of your choice, and choose the option "Public" or "Private".
3. Initialize the repository with a README file, and create a new branch called "gh-pages".
4. Clone the repository to your local machine using the Git command: `git clone https://github.com//.git`
5. Copy the provided HTML code and paste it into a new file called "index.html" in the root directory of your local repository.
6. Create a new folder called "assets" in the root directory of your local repository, and create two subfolders inside it: "css" and "img".
7. Download the "styles.css" file from the provided HTML code and save it in the "assets/css" folder.
8. Download the "logo.png" and "fav.ico" images from the provided HTML code and save them in the "assets/img" folder.
9. Commit your changes using the Git commands:
```
git add .
git commit -m "Initial commit"
git push origin gh-pages
```
10. Wait a few minutes for GitHub to deploy your website. You can check if it's live by visiting the URL `https://.github.io//` in your web browser.Congratulations! You have now created a GitHub portfolio site using the provided HTML code. You can customize the site by editing the HTML and CSS files, and by adding your own content and images to the "assets" folder. Remember to commit your changes and push them to the "gh-pages" branch to update your website.