HTML15 html1208 html 1208 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 CSS 문법, 적용방법 /* Internal */ h2{ background-color: yellow; border: 1px solid red; } This is a heading This is a heading This is a heading Colored by Color Scripter cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 선택자 /* 전체 선택 */ *{color:.. 2017. 12. 7. html 1207 html 1207 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 시멘틱 태그 여기는 헤더 메뉴1 메뉴2 메뉴3 메뉴4 프로그래밍 준비하기 java html css python 프로그래밍 준비하기 c,c++,c# Copyright 2017 fors Colored by Color Scripter cs 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44.. 2017. 12. 7. html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 removeChild, parentNode, replaceChild onload=function(){ //부모 노드에서 자식 노드 삭제 document.getElementById("div").removeChild(p2); //자식 노드에서 부모노드에 접근 document.getElementById("str").parentNode.parentNode.removeChild(p4); var div = document.getElementById("str").parentNod.. 2017. 12. 6. html 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Number Methods //Nan : 숫자가 들어갈 자리에 숫자가 아닌 다른 값이 들어오면 표시 //isNan : Nan 확인 //Number() : 숫자형 문자를 숫자로 바꾼다. 잘못 들어오면 Nan표시 //parseInt : 정수 변환 //parseFloat : 실수 변환 document.write(Number("10")+" ");//10 document.write(Number("10.33")+" ");//10.33 document.write(Number("10 20 30")+" ");//Nan document.write(Number("10 years").. 2017. 12. 6. html 예제 html 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 Insert title here document.write(" Math Method "); document.write("2의 10승 : "+Math.pow(2,10)+" "); document.write("3,25,9,47,2,5,7 중 가장 큰 수 : "+Math.max(.. 2017. 12. 6. 이전 1 2 3 다음