Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pm2
- 맥 어드레스
- setInterval clear
- map이 undefined가 뜰 때
- c# datagridview 데이터 넣기
- invalid data
- Replication
- datagridview 직접입력
- DataGridView 직접 입력
- 서버동기화
- mosquitto.conf
- pm2 확인
- 1883
- pm2 상태 확인
- setInterval 외부 정지
- timepicker
- pm2 시작
- mosquitto
- mySQL_Replication
- pm2 설치
- AntDesign
- setInterval 정지
- html #select #option #multiple
- allow_anonymouse
- 공인IP
- listener 1883
- 데이터테이블 데이터 넣기
- DatePicker
- setInterval 중지
- transfer
Archives
- Today
- Total
목록프로그래밍/Html (14)
개발 노트
간단한 계산기
* { font-size: 40px; } h1 { color: #ffffff; } body { background-color: #000000; } article { display: flex; flex-direction: column; } .center { text-align: center; } .calculator { width: 287px; border: 6px solid rgb(33, 182, 58); background-color: #ffffff; padding: 6px; display: inline-block; } .calculator form { display: grid; grid-template-columns: repeat(4, 65px); grid-auto-rows: 65px; grid-ga..
프로그래밍/Html
2022. 1. 3. 18:43
html 기본 구조 코드
//HTML버전정보(HTML5) //language속성으로 주로 사용하는 나라 언어를 선택할 수 있다(생략가능) 대게 사이트 이름(로고), 내비게이션, 헤드라인, 검색 등으로 구성된다 //헤더 영역 다른 곳으로 이동하기 위한 링크(link) 또는 이동 방법 //네비게이션 영역 //본문 영역 섹션의 사전적 의미는 여러 개로 나뉜 것의 한 부분을 의미 내용적 흐름과 구조를 만들기 위해 내용을 나누는 용도로 사용 본문과 따로 구성된 내용을 표시한다 //사이드바 영역 저작권, 연락정보 등 본문과의 관련성은 있지만 본문에 담기 어려운 내용으로 구성 //푸터 영역
프로그래밍/Html
2021. 12. 27. 21:34