이번에는 소스 코드에 <footer></footer> 태그를 추가하고 내용을 적을 것입니다. 커밋 두 번으로 나누어 진행합니다. 먼저 <footer> 태그를 추가하고 저장합니다.
infoh@DESKTOP MINGW64 /e/gitstudy08 (hotfix)
$ code index.htm VS Code 실행
index.htm
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Title</title>
</head>
<body>
<header>
<ul>
<li>깃소개</li>
<li>깃설치</li>
</ul>
</header>
<h1>hello GIT world!</h1>
<footer>
</footer>
</body>
</html>