일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xcode
- react
- 백엔드
- SWIFT
- 프론트엔드
- CSS
- 개발자
- 비전공 개발자
- 애니메이션
- IOS
- css3
- 자바스크립트
- 비전공자
- front-end
- html5
- Animation
- HTML
- button
- image
- 풀스택
- MAC
- keyframes
- ipad
- php
- jQuery
- iPhone
- javascript
- iOS 개발자
- effect
- hover
- Today
- Total
목록풀스택개발자 (2)
비전공자 개발일기
/* 테이블 삭제 */ -- drop table employee; -- drop table department; /* 테이블 생성 */ -- department create table department( deptno int(11), deptname varchar(20) not null, floor int(11) default 10 ); -- employee -- utf-8: 한글 = 3Byte / 영어 = 1Byte create table employee( empno int not null, empname varchar(20) not null, title varchar(20) default '사원', manager int, salary int, dno int ); desc department; desc..
제목: 끝말잇기 목표: Javascript 와 html, css를 활용하여 끝말잇기 코드 작성 let body = document.createElement('h1'); document.body.append(body); body.textContent = '끝말잇기'; let firstWord = document.createElement('div'); firstWord.textContent = '컴퓨터'; document.body.append(firstWord); let form = document.createElement('form'); document.body.append(form); let input = document.createElement('input'); form.append(input); le..