카테고리 없음 김우디 2015. 7. 28. 00:46
더 읽기
카테고리 없음 김우디 2015. 7. 28. 00:42
카테고리 없음 김우디 2015. 7. 27. 23:27
[HTML 강의 노트] 4. BODY_1 링크 - 문서에서 다른 문서로 이동할 수 있는 수단을 의미한다. … 네이버 href : 링크이름과 연결되어 있는 리소스(resource)의 주소 title : 연결되어 있는 리소스에 대한 설명, 롤오버 했을 때 툴팁으로 표시된다. target : 문서가 로드될 대상으로 아래와 같은 것들이 있다. _self : 현재의 문서가 로드된 프래임, 현재 문서 사라짐 _blank : 새로운 창(탭)을 띄우고 거기에 문서를 로드 _parent : 현재 문서가 frame나 iframe에 로드된 경우 현재 문서를 로드한 프래임에 문서로를 로드 프래임의 이름
카테고리 없음 김우디 2015. 7. 27. 22:58
[HTML 강의 노트] 3. DTD(Doctype) / Document Type Definition. 문서의 형식을 지정한다. 웹 기술의 진보에 따라 HTML도 변화 되는데, 변화에 따라 브라우져가 HTML을 해석하는 방식도 변화가 생겼다. 이를 극복하기 위해서 브라우져에게 해당 HTML이 어떤 표준에 따른 것인지를 알려주는 것을 DTD(Document Type Definition)이라고 한다. DTD는 문서의 제일 위에 위치한다. 예제 DTD Hello, HTML5!
카테고리 없음 김우디 2015. 7. 25. 00:25
package IdontStudyJava; import java.util.Scanner; public class PhoneBookVer2 { static Scanner sc = new Scanner(System.in); static PhoneInfo[] arr = new PhoneInfo[100]; static int i = 0; public static void showMenu() { System.out.println("선택하세요!"); System.out.println("1.데이터 입력"); System.out.println("2.데이터 검색"); System.out.println("3.데이터 삭제"); System.out.println("4.프로그램 종료"); System.out.println(""..
카테고리 없음 김우디 2015. 7. 22. 23:30
package IdontStudyJava; import java.util.Scanner; public class PhoneBookVer2 { static Scanner sc = new Scanner(System.in); public static void showMenu() { System.out.println("1.데이터 입력"); System.out.println("2.프로그램 종료"); } public static void readData() { System.out.print("이름을 입력하세요 :"); String name = sc.nextLine(); System.out.print("번호를 입력하세요 :"); String number = sc.nextLine(); System.out.print("..
카테고리 없음 김우디 2015. 7. 22. 18:29
package IdontStudyJava; public class PhoneInfo { private String name; private String phoneNumber; private String birthday; public PhoneInfo(String name, String phoneNumber,String birthday){ this.name =name; this.phoneNumber = phoneNumber; this.birthday = birthday; } public PhoneInfo(String name, String phoneNumber){ this(name,phoneNumber,"No info"); } public void printInfo() { System.out.println..
카테고리 없음 김우디 2015. 7. 21. 23:25
package IdontStudyJava; class Person { private int perID; private int milID; private int phone; private int zip; public Person(int pID, int mID) { perID = pID; milID = mID; } public Person(int pID) { perID = pID; milID = 0; } public Person(int pID, int mID, int phone, int zip) { this(pID, mID, phone, zip); } public void showInfo() { System.out.println("민번 : " + perID); System.out.println("폰번 : "..