본문 바로가기

Ankiwoong

(1841)
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..
HTML5 - 190615 Basic Study 33(Sitemap 제작 - 3) 1. Sitemap 사이트의 설계도. 크롤링 로봇이 이용할 수 있는 웹사이트의 접근 가능한 페이지의 목록. 2. HTML Code 사이트맵 회사소개 출판이념 회사연혁 찾아오시는길 신간소개 디카 그래픽 오피스 ITQ 경영/경제 기타 도서소개 디카 그래픽 오피스 ITQ 경영/경제 기타 영상강좌 디카 그래픽 오피스 ITQ 경영/경제 기타 자료실 디카 그래픽 오피스 ITQ 경영/경제 기타 고객마당 공지사항 1:1 게시판 3. CSS Code @charset "utf-8"; /* CSS Document */ body { background:#FFF; color:#333; font-size:0.75em; font-family:맑은 고딕, 돋움, sans-serif; margin:0; line-height:1.5em..
Python Learn the basics Quiz 67 Q> A median is a numerical value separating the upper half of a sorted array of numbers from the lower half. (중앙값은 정렬 된 숫자 배열의 위쪽 절반을 아래쪽 절반에서 분리하는 숫자 값입니다.) In a list where there are an odd number of entities, the median is the number found in the middle of the array. (홀수의 엔티티가있는 목록에서 중앙값은 배열의 중간에있는 번호입니다.) If the array contains an even number of entities, then there is no single middle value, ..
Python Learn the basics Quiz 66 Q> Roman numerals come from the ancient Roman numbering system. (로마 숫자는 고대 로마 넘버링 시스템에서 왔습니다.) They are based on specific letters of the alphabet which are combined to signify the sum (or, in some cases, the difference) of their values. (그들은 알파벳의 특정 문자를 기반으로하여 그 값의 합 (또는 어떤 경우에는 차이)을 나타냅니다) The first ten Roman numerals are: (처음 10 개의 로마 숫자는 다음과 같습니다.) I, II, III, IV, V, VI, VII, VIII, IX, and X...
Python Learn the basics Quiz 65 Q> Let's continue examining words. (단어를 계속해서 살펴 봅시다.) You are given two string with words separated by commas. (단어가 쉼표로 구분 된 두 개의 문자열이 제공됩니다.) Try to find what is common between these strings. (이 문자열들 사이에 공통점이 있는지 찾으십시오.) The words are not repeated in the same string. (단어는 동일한 문자열에서 반복되지 않습니다.) Your function should find all of the words that appear in both strings. (함수는 두 문자열에 나타나는 모든 단어를 찾아야합니다..