본문 바로가기

Ankiwoong

(1837)
HTML5 - 190615 Basic Study 39(우엉조림 메뉴 만들기) 1. HTML Code 우엉조림 김밥 재료로도 좋고 밑반찬으로도 효과 만점 영양 만점인 우엉 조림을 만들어 보세요. 분량 : 4인분 요리시간 : 30분 칼로리 : 670cal 재료 주재료 우엉, 통깨 약간 부재료 간장, 설탕, 물엿, 맛술, 물 조리법 우엉은 껍질을 벗기고 알맞은 길이로 채를 썬다. 우엉을 식초물에 담구어 잡내와 색이 변하지 않게 한다. 프라이팬에 식용유를 넣고 살짝 볶는다. 간장, 설탕, 맛술, 물, 물엿과 우엉을 넣고 서서히 약한 불에서 조린다. 통깨를 뿌린다. 2. CSS Code @charset "utf-8"; /* CSS Document */ *{ margin:0; padding:0; } body{ font-family:sans-serif,"맑은 고딕"; font-size:14p..
HTML5 - 190615 Basic Study 38(아이콘 리스트 예제) 1. HTML Code 아이콘 리스트 예제 전화걸기 트위터 페이스북 메일 RSS 음악 검색 홈 2. CSS Code @charset "utf-8"; /* CSS Document */ *{ margin:0; padding:0; } body{ font-family:sans-serif,"맑은 고딕"; font-size:14px; color:black; } ul,li{ list-style:none; } a{ text-decoration:none; color:black; } #icon_list{ overflow:hidden; } #icon_list li{ width:25%; height:96px; float:left; /* 박스처리 */ /* border:1px solid black; */ /* 테두리처리 */ ..
HTML5 - 190615 Basic Study 37(롤 오버 효과 주기) 1. HTML Code 롤오버 효과주기 daum 다음 naver 네이버 nate 네이트 다음 daum 네이버 naver 2. CSS Code @charset "utf-8"; /* CSS Document */ *{ margin:0; padding:0; } body{ font-family:sans-serift, "맑은 고딕"; font-size:14px; color:black; } ul, li{ list-style:none; } a{ text-decoration:none; color:black; } /* 롤오버 효과주기 */ dl dt,dl dd{ float:left; width:80px; height:50px; border:1px solid red; } dl dd{ display:none; } dl dt:..
HTML5 - 190615 Basic Study 36(가로 네비게이션 바) 1. HTML Code 가로네비게이션 바 지역 쇼핑 문화 여행 레저 추천 전체보기 2. CSS Code @charset "utf-8"; /* CSS Document */ *{ margin:0; padding:0; } body{ font-family:sans-serift, "맑은 고딕"; font-size:14px; color:black; } ul, li{ list-style:none; } a{ text-decoration:none; color:black; } /* 가로네비게이션 */ ol{ overflow:hidden; width:1000px; } ol li{ width:140px; height:50px; background:url(../img/top_gnb1-1.png); /* 글자숨기기 */ text..
HTML5 - 190615 Basic Study 35(스프라이트 메뉴) 1. HTML Code 스프라이트 메뉴 템플릿 워드프레스 맞춤솔류션 주문제작 무료홈페이지 2. CSS Code @charset "utf-8"; /* CSS Document */ *{ margin:0; padding:0; } body{ font-family:sans-serift, "맑은 고딕"; font-size:14px; color:black; } ul, li{ list-style:none; } a{ text-decoration:none; color:black; } /* 가로크기-116px 세로크기-38px */ nav ul{ overflow:hidden; width:600px; } ul li{ width:116px; height:38px; background:url(../img/css_sprites-1..
HTML5 - 190615 Basic Study 34(배경 속성 이해하기) 1. HTML Code 배경 속성 이해하기 box1 box2 box3 box4 box5 box6 box7 2. CSS Code @charset "utf-8"; /* CSS Document */ /* CSS 초기화 */ *{ margin:0; padding:0; } body{ font-family:sans-serif, "맑은 고딕"; font-size:14px; color:black; } ul,li{ list-style:none; } a{ text-decoration:none; color:black; } div{ width:300px; height:300px; border:3px solid red; } #box1{ /* bgc : 젠코딩 */ background-color:pink; } #box1{ bac..
Python Learn the basics Quiz 69 Q> I start to feed one of the pigeons. (나는 비둘기 중 하나를 먹이기 시작한다.) A minute later two more fly by and a minute after that another 3. (1 분 후 2 분이 지나면 3 분이 지나고 1 분 후에 다시 날아간다.) Then 4, and so on (Ex: 1+2+3+4+...). (그 다음 4 분 (예 : 1 + 2 + 3 + 4 + ...).) One portion of food lasts a pigeon for a minute, but in case there's not enough food for all the birds, the pigeons who arrived first ate first. (음식의 일..
Python Learn the basics Quiz 68 Q> Almost everyone in the world knows about the ancient game Chess and has at least a basic understanding of its rules. (세계의 거의 모든 사람들이 고대 게임 체스에 대해 알고 있으며 최소한 규칙을 이해하고 있습니다.) It has various units with a wide range of movement patterns allowing for a huge number of possible different game positions (for example Number of possible chess games at the end of the n-th plies.) For this mission, we wi..