2024年9月3日 星期二

iframe 的用法

 利用 iframe 這個 html 的 tag,就可以在網頁中顯示其它網頁的內容

<iframe src="https://yourhost.com/path/to/notebook.html" width="100%" height="600px"></iframe>


2024年9月2日 星期一

如何用 git 更新檔案

git add .

git commit -m "Update website content"

git push origin main