일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- textContent
- 함수 인자
- null-safety
- DFS
- querySelector
- parcelable
- Flutter
- Adapter
- 230503
- putextra
- string
- 프래그먼트
- serializable
- 230510
- 생명주기
- html
- javascript
- 부가데이터
- 안드로이드
- 230508
- ViewPager
- classList
- DOMContentLoaded
- intent
- 데이터 타입
- fragment
- ActionBar
- 인텐트
- C++
- Class
- Today
- Total
목록[실습]/[실습] 프론트엔드 (5)
나만의 개발노트

[나의 코드] - index.html ... general questions Do You Accept All Major Credit Cards? Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est dolore illo dolores quia nemo doloribus quaerat, magni numquam repellat reprehenderit. ... *그림으로 보기 [더 나은 코드] - index.html -> sidebar 클래스를 div 가 아닌 aside로 사용함 - aside태그 : 별도 구획 요소 - 문서의 주요 내용과 간접적으로만 연관된 부분. 주로 사이드바 혹은 콜아웃 박스를 표현한다. 전체 코드 보기 https://githu..
[나의 코드] - index.html ... ... ... ... ... ... [더 나은 코드] - index.html ... ... ... ... ... ... ... -> sidebar 클래스를 div 가 아닌 aside로 사용함 - aside태그 : 별도 구획 요소 - 문서의 주요 내용과 간접적으로만 연관된 부분. 주로 사이드바 혹은 콜아웃 박스를 표현한다. 전체 코드 보기 https://github.com/mokjakA/std_JS GitHub - mokjakA/std_JS Contribute to mokjakA/std_JS development by creating an account on GitHub. github.com 프로젝트 참고 https://www.freecodecamp.org/ne..
- html의 -> 화면 HTML 삽입 미리보기할 수 없는 소스 + a태그 내부에 i태그를 하면, 아이콘을 링크가 연결된 버튼처럼 사용할 수 있음
[나의 코드] - index.html counter 0 DECREASE RESET INCREASE - app.js const decBtn = document.getElementById('dec_btn'); const resBtn = document.getElementById('res_btn'); const incBtn = document.getElementById('inc_btn'); const value = document.getElementById('value'); let count = 0; decBtn.addEventListener('click',function(){ count--; if(count>0){ value.style.color = 'green'; }else if(count === 0){ ..
[필요한 개념] arrayshttps://itnote-for-me.tistory.com/14 document.getElementById() https://itnote-for-me.tistory.com/15 document.querySelector() https://itnote-for-me.tistory.com/16 addEventListener() https://itnote-for-me.tistory.com/17 document.body.style.backgroundColor Math.floor() Math.random() array.length [참고] https://www.freecodecamp.org/news/javascript-projects-for-beginners/#how-to-create-a..