Skip to content

Latest commit

Β 

History

History
59 lines (41 loc) Β· 1.73 KB

File metadata and controls

59 lines (41 loc) Β· 1.73 KB

Matei's CV

My personal CV made with HTML, CSS and JS.

🎞 Live Preview

Live

The repo name must be in the following format: UserName.github.io

πŸ“š What you could learn

  • use HTML with CSS
  • 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

β€πŸ’» My course on Udemy

A simple way to support my work and to improve your programming skills:

πŸ“‹ DEV notes

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