Skip to content

Commit 4cc53c8

Browse files
committed
Added next steps to readme
1 parent a0b1570 commit 4cc53c8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,15 @@ Our 3 main sections make up the focus of our page. Wrap these three sections (ta
6262
### Footer
6363

6464
Lastly, the element with a class of `footer` isn't the most semantic use of that area either. Luckily HTML 5 has a much better element we can use for footers. Update this element to use the semantically correct tag.
65+
66+
## Next Steps
67+
68+
Now that your site is working, the next step would be to deploy it to production!
69+
70+
Putting this site up on GitHub pages is a bit different than some other projects because the code is all in the `/src` directory. There’s a nifty way to push this directory to a GitHub branch, which allows you to use GitHub pages with it! Try running this Git command for this project:
71+
72+
```
73+
git subtree push --prefix src origin gh-pages
74+
```
75+
76+
This will push the `src` folder up to GitHub on the `gh-pages` branch. After that, you should be able to open up `http://username.github.io/SemanticHTMLPortfolioProject`, where `username` is your GitHub username.

0 commit comments

Comments
 (0)