본문 바로가기

전체 글

(163)
2021.3.9 (Tue) - Def head 에 : css 와 html을 연결 image tag 헷갈림 / src 의미 찾아보기 >> source 였다 tag 순서 head에 link > wrapo> header which is h1> logo - 어디로 연결되는지(href); image connect(img scr) gnb = 메뉴바 > ul, li - 이건 ok logo - inside h1 > hyperlink through logo> img id/class 구분 - 일단 하지 말아봐 id로만 주기 Attribute 와 Element의 정확한 정의를 알고 어떤게 어떤건지 정확한 이해 필요!!! Element란 페이지에 있는 각각의 택들을 말함 , 등 >> 요소 Attribute는 Element 의 형식을 지정함 href, id, cl..
2021.3.8 (Mon)- Coding main.html 학교소개 교육과정 취업정보 커뮤니티 상담신청 main flash 1 2 3 copyright © All reserved main.css *{margin:0; padding:0;} ul,li{list-style:none;} #wrap { width:100%; } a{ text-decoration:none; color:#333 } a:hover{ text-decoration:underline; } #header{ width:1000px; margin:0 auto; height: 102px; } .logo{ display:inline-block; margin-top: 20px; } .gnb{ float:right; } .gnb > ul > li{ float:left; display:inlin..
2021.3.8 (Mon)- Def First/ DEFINITION html - HyperText Markup Languagehtml은 기본적으로 다 옆으로 붙음 하지만 그 사이에 공간이 있느냐 없느냐의 차이contants화면에 놓는거start with '' = element / ex) h1, div, ul, li, a, image, inputthe words come behind element = attribute / ex) src, href특정 element에 속성값이 존재한다 ex) img scr="경로" a href="#"모든 엘리먼드에 들어갈 수 있는 속성값 ; CSS - Cascading Style Sheetshtml의 외관을 꾸며주는 역할visualhtml로 놓은걸 정리 정돈 하는거JavaScript움직이기 Two Displa..