์ ์ฒด ๊ธ
-
Git , Github | ๊น๊ณผ ๊นํ๋ธ ๋ง์คํฐTIL 2022. 9. 14. 21:59
1. setup ๊น ์ค์นํ๊ธฐ git : all the commands git --version .gitconfig : ๋ชจ๋ git์ ๊ดํ ์ค์ ! git config --list config ํ์ผ ์ด๊ธฐ git config --global -e config ํ์ผ์ ์๋ํฐ์ ์ฐ๊ฒฐํ๊ธฐ git config --global core.editor "code" code ๋ช ๋ น์ด๋ฅผ ์ ๋ ฅํ๋ฉด gitconfig ํ์ผ์ด ์๋ํฐ์์ ์ด๋ฆผ code . ๊ธฐ๋ณธ ์ ๋ณด ์ค์ ํ๊ธฐ git config --global user.name "sinyoung" //name ์ค์ git config --global user.email "sinyoung@naver.com" //email ์ค์ git config userr.name //sinyoung..
-
๐จ CSS 6 | ๊ทธ๋ฆฌ๋(with ๋๋ฆผ์ฝ๋ by ์จ๋ฆฌ) 2ํCSS 2022. 9. 9. 16:38
Step 4 : grid ์์์๊ฒ ์ค ์ ์๋ ์์ฑ๋ค ( grid cell ) Grid Line -grid-column-start , grid-column-end column์ ๊ธฐ์ค์ผ๋ก ๋ช ๋ฒ์งธ ์ค๋ถํฐ ๋ช ๋ฒ์งธ ์ค๊น์ง ์ฐจ์งํ ์ง ์ ์ .item2{ grid-column-start : 2; grid-column-end : 4; } -grid-row-start , grid-row-end row๋ฅผ ๊ธฐ์ค์ผ๋ก ๋ช ๋ฒ์งธ ์ค๋ถํฐ ๋ช ๋ฒ์งธ ์ค๊น์ง ์ฐจ์งํ ์ง ์ ์ .item2{ grid-column-start : 2; grid-column-end : 4; grid-row-start : 1; grid-row-end : 3; } ๋จ์ถํ .item2{ grid-column : 2 / 4; grid-row : 1 / 3; } ..
-
๐จ CSS 5 | ๊ทธ๋ฆฌ๋(with ๋๋ฆผ์ฝ๋ by ์จ๋ฆฌ) 1ํCSS 2022. 9. 9. 14:45
Step 1 : Grid vs Flexbox CSS Layout ์ ๋ฐฐ์นํ ์ ์๋ ๋๊ตฌ๋ก๋ Flexbox์ grid ๋ ๊ฐ์ง๊ฐ ์๋ค. Flexbox์ ๊ฒฝ์ฐ ๊ฐ๋ก๋ฅผ ๊ธฐ์ค์ผ๋ก, ์ธ๋ก๋ฅผ ๊ธฐ์ค์ผ๋ก 1์ฐจ์์ ์ผ๋ก CSS ๋ ์ด์์์ ๋ฐฐ์นํ ์ ์๋ค. ๊ฐ๋ก๋ก ๋ฌถ๊ฑฐ๋ ์ธ๋ก๋ก ๋ฌถ๊ฑฐ๋ Grid์ ๊ฒฝ์ฐ ๊ฐ๋ก์ถ๊ณผ ์ธ๋ก์ถ์ ๊ธฐ์ค์ผ๋ก 2์ฐจ์์ ์ผ๋ก CSS ๋ ์ด์์์ ๋ฐฐ์นํ ์ ์๋ค. Step 2 : Grid Grid๋ container(๋ถ๋ชจ)์ ์ฃผ๋ ์์ฑ๊ณผ grid cell(์์)์ ์ฃผ๋ ์์ฑ์ผ๋ก ๋๋๋ค. container ์ ๊พธ๋ฉฐ์ค ์ ์๋ ์์ฑ๋ค - display - grid-template-columns - grid-template-rows - grid-template-areas - grid-gap grid cell์ ๊พธ๋ฉฐ์ค..
-
โจ HTML5 | HTML ๋ฉํ ํ๊ทธ๋คHTML 2022. 9. 6. 00:39
1. DOCTYPE html> ์ ์๋ฏธ html ๋ฌธ์๋ฅผ ์์ฑํ ๋ ๊ฐ์ฅ ์ฒซ ์ค์ ์ ๋ ์ ์น ๋ธ๋ผ์ฐ์ ์๊ฒ ์ด๋ค ๋ฒ์ ์ HTML ์ ์ฌ์ฉํ๋์ง ์๋ ค์ฃผ๋ ๋ฌธ๊ตฌ์ด๋ค. ์์ HTML5 ๋ฌธ์ strict HTML 4.01 ๋ฌธ์ transitional HTML 4.01 ๋ฌธ์ frameset HTML 4.01 ๋ฌธ์ What is the DOCTYPE Declaration in HTML? The HTML document type declaration, also known as DOCTYPE, is the first line of code required in every HTML or XHTML document. The DOCTYPE declaration is an instruction to the web browser..
-
๐จ CSS 4 | Flexbox (with ๋๋ฆผ์ฝ๋ by ์จ๋ฆฌ) 2ํCSS 2022. 9. 5. 23:25
Step 4: Flexbox ์์์๊ฒ ์ค ์ ์๋ ์์ฑ๋ค (item) HTML ๋ฌธ์ ์์ฑ 1 2 3 CSS ์์ฑ .container { padding-top : 100px; background : beige; height: 100vh; display : flex; } .item { width: 40px; height: 40px; border : 1px solid black; } .item1 { background-color: rgb(247, 114, 114); } .item2 { background-color: rgb(250, 134, 153); } .item3 { background-color: rgb(165, 100, 250); } - order default ๊ฐ : 0; ์์ ์์๋ก ์ง์ ํ๊ธฐ .co..
-
โฑ๏ธ ์คํฑ์์น ์ ์ํ๊ธฐ | setInterval , String.padStartTIL 2022. 9. 5. 22:22
1. semantic html tag ์์ฑ โฑ๏ธSTOPWATCH 00:00:00 ์์ 2. CSS ์์ฑ *{ margin : 0; padding : 0; box-sizing: border-box; } main{ position : absolute; top : 50%; left : 50%; transform : translate(-50%, -50%); width : 551px; border : 1px solid #ccc; border-radius : 10px; } main h1{ font-size : 15px; color :#4285f4; font-weight : lighter; border-bottom : 1px solid #4285f4; padding : 10px; } main section.stopw..
-
๐ ํ๋ฒ๊ฑฐ ๋ฒํผ ์ ์ํ๊ธฐTIL 2022. 9. 3. 05:23
์์ฝ - nav ์์ ๋ฒํผ ํ๊ทธ๋ฅผ ์์ฑํ๋ค. - ๋ฒํผ ํ๊ทธ ์์ span ํ๊ทธ๋ฅผ ๋ฃ์ด css๋ก ๋ผ์ธ์ ์์ฑํด์ค๋ค. - ๋ฒํผ์ ํด๋ฆญํ๋ฉด gnb ํ๊ทธ์ open ํด๋์ค๊ฐ ์๋ค๋ฉด ? open์ ์ญ์ ํด์ค๋ค : open์ ๋ถ์ฌ์ค๋ค 1. semantic html tag ์์ฑ News Contact About 2. JS ์์ฑ const hamburgerToggle = document.querySelector(".hamburger-btn"); const nav = document.querySelector("nav"); hamburgetToggle.addEventListener("click", () => { nav.classList.toggle("open"); this.classList.toggle("toggled");..
-
โจ HTML5 | ์๋ฉํฑ ํ๊ทธ(sementic tag)HTML 2022. 9. 3. 05:07
์๋ฉํฑ ํ๊ทธ๋ ? non-semantic elements : , ์ ๊ฐ์ด ํ๊ทธ ์ ์ปจํ ์ธ ์ ๋ํด ์๋ฌด๋ฐ ์ ๋ณด๋ฅผ ๊ฐ๊ณ ์์ง ์์. semantic elements : , , ...๋ฑ ์ปจํ ์ธ ์ ๋ํ ์ ๋ณด๋ฅผ ๊ฐ๊ณ ์์ ์ค์์ฑ html์์ ์๋ฉํฑ ํ๊ทธ๊ฐ ์ค์ํ ์ด์ - ๊ฒ์์์ง์ ์ต์ ํ(SEO: Search Engine Optimizzation) - ์ ๋ณด์ ์ ํํ ์ ๋ฌ - ์น ์ ๊ทผ์ฑ - ์์ง๋ณด์ ์ฉ์ด ์ผ๋จ html์ ์ญํ ์ ์น ๋ฌธ์๋ฅผ ๋ง๋ค๊ณ ์ ๋ณด๋ฅผ ์ ๋ฌํ๋ ๊ฒ์ด๋ค. ์ด ๋ ํ๊ทธ๋ฅผ ์ฌ์ฉํ๊ฒ ๋๋๋ฐ, ๊ฐ ์ ๋ณด์ ๋ง๋ ํ๊ทธ๋ฅผ ์ฌ์ฉํ๋ฉด ์น ๋ฌธ์์์ ์ํ๋ ์ ๋ณด๋ฅผ ์ฐพ๊ธฐ ์ฝ๊ฒ ๋ง๋ค์ด์ค๋ค. ๋ํ ๊ฒ์์์ง์ ํ๊ทธ๋ฅผ ๋ฐํ์ผ๋ก ์ฌ์ฉ์๊ฐ ์ํ๋ ์นํ์ด์ง๋ฅผ ์ฐพ์ ๋ณด์ฌ์ค๋ค. HTML HTML ์ฌ์ฉ์๊ฐ HTML ๊ด๋ จ ๊ธ์ ๊ฒ์ํ์ ๋ ..