My personal CV made with HTML
, CSS
and JS
.
- nmatei.github.io/links
- https://nmatei.github.io/examples/layout
- https://nmatei.github.io/examples/layout-scroll
The repo name must be in the following format: UserName.github.io
- use
HTML
withCSS
- create layouts
- understand basics of
JS
- understand how dynamic HTML works
- basic
git
commands and usage - deploy your site on github
- Theme switch (dark / light) example1, example2
- Theme grayscale - test for color blind people
A simple way to support my work and to improve your programming skills:
For each Team create new branch from scrath (make sure to change name).
bname=demo
git switch --orphan $bname
touch .gitignore
echo /.vscode >> .gitignore
echo /.idea >> .gitignore
echo /node_modules >> .gitignore
touch README.md
echo "# nmatei.github.io" >> README.md
git add .
git commit -m "Initial commit"
git push origin $bname
git status
Switch branches commands
git checkout master
git checkout demo