보이지 않는 head 안의 meta 태그 쓰기 <meta name=" " content=" " /> meta name="description" content="This is my website" /> *meta 태그의 attribute: name, content 이렇게 저장해도 화면상에 바로 보이는 건 없다. 하지만 브라우저에서 사이트의 description을 표기할 때나구글이 검색할 때 이 값(content)을 가져간다. 1. HTML 2024.11.04
웹사이트의 타이틀을 입력하는 방법 태그 안에 태그를 넣고 타이틀 태그 안에 원하는 제목을 입력하면 된다. ex.DOCTYPE html>html> head> title>Home - My first website.title> head> body> hi>hello worldhi> body>html> 결과. 1. HTML 2024.11.03
<!DOCTYPE html> 를 쓰는 이유 DOCTYPE html> html 언어가 시작되기 제일 처음에 이렇게 적어줘야 브라우저는 '아 html 언어구나' 라고 인식한다. HTML 태그의 큰 틀 head: 웹사이트 안에서 보여지지 않는 내용body: 웹사이트 안에서 보여지는 내용 1. HTML 2024.11.03
<img src=" "/> html 이미지 태그 이미지를 넣는 태그: *참고: src 는 source 의 약자 ex. img src="https://search.pstatic.net/common/?src=http%3A%2F%2Fimgnews.naver.net%2Fimage%2F076%2F2024%2F08%2F06%2F2024080601000439400057531_20240806081912434.jpg&type=sc960_832"/> 결과. 1. HTML 2024.11.03
<a target="_self"> / <a target="_blank"> html 태그 target="_self"해당 화면에서 열림 ex.a href="http://www.google.com" target="_self">Go to google.coma> target="_blank"새 창에서 열림 ex.a href="http://www.google.com" target="_blank">Go to google.coma> 1. HTML 2024.11.03
<a href> html 태그 a: anchor 닻 태그는 단독으로 쓸 수 없고부가적인 정보를 나타나는 attributes(속성)이 필요하다. 그 중 하나가 href 이다.href: HTTP reference 혹은 hyperlink reference 를 뜻한다.어디로 이동할 건지 알려줌ex.a href="http://www.google.com">Go to google.coma> 결과 1. HTML 2024.11.03
<ol> html 태그 (ordered list) 태그 사이에 리스트 태그를 넣어준다. ex.ol> li>beerli> li>김치li> li>meatli> li>milkli>ol> 결과 1. HTML 2024.11.03
<ul> html 태그 (unordered list) 태그 안에 리스트 태그를 사용해준다. ex.ul> li>beerli> li>김치li> li>meatli> li>milkli>ul> 결과 1. HTML 2024.11.03
html 태그 쓰기 html 기본 형태: 내용 ex.Hello this is my website! Hello this is my website!Hello this is my website!Hello this is my website!Hello this is my website!Hello this is my website! so cool 😎 1. HTML 2024.11.03
JavaScript 란? (정의) JavaScript란? html: 골격CSS: 근육JavaScript: 뇌 웹사이트의 애니메이션도 구성하고 동적인 행동을 할 수 있게 한다. 3. JavaScript 2024.11.03