+
+
+
+
+
+
+
+
+ 애증의 뉴욕 이놈자식 그래도 사랑해
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/index.js" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/index.js"
new file mode 100644
index 0000000..092549a
--- /dev/null
+++ "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/index.js"
@@ -0,0 +1,37 @@
+//1-a,b
+var images = document.querySelectorAll('.images-1');
+
+images.forEach(function(details) {
+ details.addEventListener('mouseover', function() {
+ var content = details.querySelector('div');
+ content.classList.add('show-descriptions');
+ });
+
+ details.addEventListener('mouseout', function() {
+ var content = details.querySelector('div');
+ content.classList.remove('show-descriptions')
+ });
+});
+
+//2-a
+//새로고침하면 버튼이 보이는 경우 --> 해결
+window.onload = function() {
+ window.scrollTo(0, 0); // 새로고침시 페이지를 최상단으로 스크롤
+ var button = document.getElementById('button-top');
+ button.style.opacity = 0; // 버튼의 투명도를 0으로 설정하여 보이지 않게 함
+}
+
+//버튼의 투명도 설정
+window.addEventListener('scroll', ()=> {
+ var button = document.getElementById('button-top');
+
+ // 최대 스크롤 가능한 높이
+ var maxScrollHeight = document.documentElement.scrollHeight - document.documentElement.clientHeight;
+
+ // 현재 스크롤된 높이의 비율 계산 (0에서 1 사이의 값)
+ var scrollPercentage = window.scrollY / maxScrollHeight;
+
+ // 버튼의 투명도를 스크롤 비율에 따라 설정
+ button.style.opacity = scrollPercentage;
+});
+
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/style.css" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/style.css"
new file mode 100644
index 0000000..7294dc0
--- /dev/null
+++ "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/style.css"
@@ -0,0 +1,260 @@
+*{
+ margin:0;
+ padding:0;
+}
+
+/*심화: 스크롤 부드럾게*/
+html{
+ scroll-behavior: smooth;
+}
+
+body{
+ width:100vw;
+}
+
+header{
+ text-align: center;
+ top:0;
+
+ line-height: 2;
+ font-size: 2rem;
+ font-weight: bold;
+
+ background-color: palegoldenrod;
+ color: black;
+ margin-bottom: 1rem;
+}
+
+/*preview*/
+.preview{
+ width:100vw;
+
+ display:flex;
+ gap:1rem;
+ margin-bottom:0.5rem;
+
+ overflow-x: auto;
+ overflow-y: hidden;
+}
+
+.preview img{
+ width:25rem;
+ height:15rem;
+ flex-basis: 25rem;
+}
+
+/*네비게이션*/
+nav{
+ list-style-type: none; /* 목록 스타일 제거 */
+ padding: 0; /* 목록 내부 패딩 제거 */
+
+ margin-top: 1rem; /* 목록 주변 여백 제거 */
+ margin:0;
+}
+
+nav span{
+ font-size:2rem;
+}
+
+ul li{
+ margin-bottom: 0.5rem;
+ font-size:1.5rem;
+}
+
+ul li a {
+ text-decoration: none;
+ color: #333;
+ transition: color 0.3s, text-decoration 0.3s;
+}
+
+ul li a:hover {
+ color: rgb(106, 166, 223); /* hover 시 텍스트 색상 변경 */
+ text-decoration: underline; /* hover 시 밑줄 표시 */
+ cursor: pointer;
+}
+
+/*목차 설정*/
+#category-1,
+#category-2,
+#category-3 {
+ position: sticky;
+ text-align: center;
+
+ background-color: rgb(245, 208, 214);
+
+ line-height: 2;
+ font-size: 1.5rem;
+ top:0;
+ z-index:1;
+}
+
+/*section-1*/
+.images-1-container{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+
+ flex-wrap: wrap;
+
+ gap: 1rem;
+ padding: 0;
+ margin-top:1rem;
+ margin-bottom: 1rem;
+}
+
+.images-1{
+ display: flex;
+
+ position: relative;
+
+ flex-grow: 1;
+
+ justify-content: space-around;
+ z-index: 0;
+}
+
+.images-1 img{
+ width:20rem;
+ height:20rem;
+
+ flex-grow:1;
+ flex-shrink:1;
+
+ object-fit: cover;
+}
+
+.imgages-1 img :hover {
+ transform: translateY(-5px);
+}
+
+.details{
+ display: none;
+ position: absolute;
+
+ width: 90%;
+ height: 90%;
+
+ padding: 1rem;
+}
+
+.show-descriptions{
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+
+ background-color: rgba(53, 50, 50, 0.455);
+ gap: 1rem;
+
+ font-weight: 700;
+ color: #e7f5fd;
+}
+
+/*section-2*/
+.images-2{
+ display: flex;
+ gap:1rem;
+ margin-top:1rem;
+ margin-bottom:1rem;
+}
+
+.images-2-left,
+.images-2-right{
+ display: flex;
+ flex-wrap: wrap;
+ width:30rem;
+ height: 30rem;
+
+ flex-grow:1;
+ flex-shrink: 1;
+ margin-bottom: 1rem;
+}
+
+.images-2-left img{
+ width:31rem;
+ height:31rem;
+
+ flex-grow: 1;
+ flex-shrink: 1;
+ object-fit: cover;
+}
+
+.images-2-right{
+ gap:1rem;
+}
+.images-2-right img{
+ width:15rem;
+ height:15rem;
+
+ flex-grow: 1;
+ flex-shrink: 1;
+
+ object-fit:cover;
+}
+
+/*section-3*/
+.container-3{
+ display: grid;
+ justify-content:center;
+ align-items: center;
+
+ margin-top:1rem;
+
+ gap:1rem;
+
+ grid-template-rows: repeat(4, 10rem);
+ grid-template-columns: repeat(4, 15rem);
+}
+
+.container-3 img {
+ width:100%; /* 그리드 아이템 내의 이미지 최대 너비 설정 */
+ height: 100%; /* 비율에 맞게 이미지 높이 조절 */
+ object-fit: cover;
+
+ }
+.container-3 img:first-child {
+ grid-row: 1/ 2;
+ grid-column: 1/3;
+
+}
+.container-3 img:nth-child(2) {
+ grid-row: 2 / 3;
+ grid-column: 1/3;
+
+}
+.container-3 img:nth-child(3) {
+ grid-row: 1/ 3;
+ grid-column:3/5;
+
+}
+.container-3 img:nth-child(4) {
+ grid-row: 3 /5;
+ grid-column: 1/4;
+
+}
+.container-3 img:nth-child(5) {
+ grid-row: 3/5;
+ grid-column: 4/5;
+
+}
+
+footer{
+ height:3rem;
+}
+
+footer span{
+ line-height: 2;
+ font-size: 1.5rem;
+}
+#button-top{
+ position: fixed;
+ bottom: 0;
+ right: 0;
+
+ padding: 1rem;
+ z-index: 1;
+
+ background-color: #c8def5;
+ color: #000000;
+ font-size: 1rem;
+}
\ No newline at end of file
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/.DS_Store" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/.DS_Store"
new file mode 100644
index 0000000..335951d
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/.DS_Store" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/01.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/01.png"
new file mode 100644
index 0000000..9c3d3d0
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/01.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/02.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/02.png"
new file mode 100644
index 0000000..d3cc6d5
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/02.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/03.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/03.png"
new file mode 100644
index 0000000..ca73886
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/03.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/04.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/04.png"
new file mode 100644
index 0000000..ddeab9c
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/04.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/05.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/05.png"
new file mode 100644
index 0000000..0383039
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/05.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/06.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/06.png"
new file mode 100644
index 0000000..9ae51cf
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/06.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/07.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/07.png"
new file mode 100644
index 0000000..473300e
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/07.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/08.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/08.png"
new file mode 100644
index 0000000..df9d04a
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/08.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/09.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/09.png"
new file mode 100644
index 0000000..4f72843
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/09.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/10.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/10.png"
new file mode 100644
index 0000000..9006333
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/10.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/11.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/11.png"
new file mode 100644
index 0000000..94e3c27
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk1/11.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/.DS_Store" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/.DS_Store"
new file mode 100644
index 0000000..4a3c1a3
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/.DS_Store" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/01.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/01.png"
new file mode 100644
index 0000000..ebe3e0e
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/01.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/02.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/02.png"
new file mode 100644
index 0000000..e475807
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/02.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/03.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/03.png"
new file mode 100644
index 0000000..8924042
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/03.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/04.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/04.png"
new file mode 100644
index 0000000..20d64a4
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/04.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/05.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/05.png"
new file mode 100644
index 0000000..7615cf3
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/05.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/06.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/06.png"
new file mode 100644
index 0000000..bcc9283
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/06.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/07.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/07.png"
new file mode 100644
index 0000000..16e9990
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/07.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/08.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/08.png"
new file mode 100644
index 0000000..eafd199
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/08.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/09.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/09.png"
new file mode 100644
index 0000000..40cf48c
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk2/09.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/.DS_Store" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/.DS_Store"
new file mode 100644
index 0000000..41ccd10
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/.DS_Store" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/01.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/01.png"
new file mode 100644
index 0000000..8c967d0
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/01.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/02.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/02.png"
new file mode 100644
index 0000000..d9da48a
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/02.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/03.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/03.png"
new file mode 100644
index 0000000..1d48097
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/03.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/04.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/04.png"
new file mode 100644
index 0000000..9b560b8
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/04.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/05.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/05.png"
new file mode 100644
index 0000000..afb4f6e
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/05.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/06.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/06.png"
new file mode 100644
index 0000000..1536a6a
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/06.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/07.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/07.png"
new file mode 100644
index 0000000..591e84b
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/07.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/08.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/08.png"
new file mode 100644
index 0000000..285e018
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/08.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/09.JPG" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/09.JPG"
new file mode 100644
index 0000000..1698c29
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/09.JPG" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/10.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/10.png"
new file mode 100644
index 0000000..57698cd
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/10.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/11.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/11.png"
new file mode 100644
index 0000000..ac0cc4f
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/11.png" differ
diff --git "a/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/12.png" "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/12.png"
new file mode 100644
index 0000000..03927ac
Binary files /dev/null and "b/Session02 /\354\233\250\353\271\204\354\235\230\354\202\254\354\247\204\352\264\200\352\263\274\354\240\234/wk3/12.png" differ