# 11/3 部課 # CSS https://hackmd.io/vY_ZqkksQkiwYUMWl3l7ZA # Javascript https://hackmd.io/aCbVZebKT9iz8EhpkAKqgQ Arrow Function # NodeJS [NVM](https://hackmd.io/LkWnyH8HRZSVVosrrDgV1g) [NodeJS](https://hackmd.io/llXQegO6RkGRyfeUsY8LXg) ## Notes ### 個人的github網站 創一個新的repo,名字打上自己的id + ".github.io": ![image.png](https://hackmd.io/_uploads/S1-9PVMQa.png) ![image.png](https://hackmd.io/_uploads/B1DiPNz7T.png) 到剛才創的repo,把它clone下來 ``` cd <your directory> git clone <your_repo_url> ``` ![image.png](https://hackmd.io/_uploads/BygJ_VG7a.png) 還記得上禮拜的 html5_up 吧? https://html5up.net/ 選一個模板,放到repo的資料夾底下(或者想要自己手刻也可以XD) 改成自己的網站(eg. 名字、興趣、...) 如果要預覽自己寫好的網站,把index.html打開就可以了~ 接著就把寫好的網站上傳到github吧! ```bash # check file status git status # add file to register git add <files> # or just simply use -A if all files are to be updated git add -A # create commit # Usage: git commit -m "<type some info here>" git commit -m "first commit" # Push the commit remotely # Usage: git push <branch name> git push origin main ``` 去瀏覽器打上`https://<your_id>.github.io/` 如果有出現自己的網頁,代表你成功了!