web html css

Home/web html css

.htaccess 수정으로 특정 페이지를 리다이렉트 redirect 하기

예시 http://hgarden.net 웹사이트에서 http://hgarden.net/clausthaler 위 페이지를 아래 페이지로 리다이렉트 하고 싶을 때. http://beer.theinfo.kr/clausthaler/ 해결방법: http://hgarden.net 웹사이트의 .htaccess 파일을 열어서 아래 코드를 추가한다. Redirect 301 /clausthaler http://beer.theinfo.kr/clausthaler/  

css reset link

CSS reset (CSS 리셋 초기화) eric myer css reset   html5 doctor   yui library   리셋 스타일보다 유용한 기본 스타일 선언

HTML page Basic structure with css float

1. This is overview. (구조도) 2. And this is with css comments. To put 2 elements side by side, they have float:left; And To stop float after theses, the parent has overflow:hidden; But instead you can use clear: both; for footer and content-wrap, to stop float. (구조도에 css 설명 설명 첨가. 2개의 요소를 옆으로 나란히 [...]

About absolute in CSS

1. In this code, child div has absolute position. Then parent div should have height and relative. (자식 div가 absolute 포지션일 때, 부모 div는 높이값을 갖고 relative로 세팅되어야만 한다) 2. It look like this. 3. But without height and relative for parent. It look like this. (그러나 부모가 div가 높이값 없고 relative 안되어 있으면 아래와 [...]

Basic Html

1. What is Element? (엘러먼트란? 즉 요소란?) Element is Opening Tag + Content + Closing Tag. For example title The whole line of code above is called h1 element. (여는 태그 + 내용 + 닫는 태그를 말합니다. 예를 들어 위의 한줄 전체가 h1 엘러먼트이지요) 2. What is attribute? Element can have an attribute. Like here. [...]

xe 게시판 추천 버튼이 어디에? = 스케치북 스킨으로 해결

일반적 보드 스킨에 추천 버튼이 어디에 있는지 한참을 찾았네요. 이 게시판 처럼 바꿔봐야 하겠네요. 스케치북5 라는 것인데 아주 좋네요. 다운로드는 여기서 1. 스케치북5의 추천버튼을 로그인 없이도 가능하게하기 링크 2.그런데 homee 버튼을 삭제하려면? 스킨관리에서 빵조각 표시 안함으로 체크해줍니다. 3. 또 그런데 글쓰기로 들어가면 home 버튼이 다시 나타나는데요. 4. 결국 sketchbook5 폴더의 _breadcrumb.html 파일을 열어 home 을 [...]

SEO

html 1. 사이트를 간결하고 구조화할 것. <h1> 태그는 단순히 모양을 바꾸는 것만이 아니다. 서치 엔진이 우선적으로 찾고 정리하게 된다. 2. 구글 가이드 라인 wordpress 1. WordPress SEO by Yoast 2. 워드프레스는 구글에는 잘 걸리지만 국내 포탈에는 잘 되지 않음. 같은 포스트를 네이버 등 블로그에 중복해서 올리는 수고가 필요.

xhtml and html5 doctype and basic rule

xhtml doctype: It's also necessary to add this code to the opening <html> tag (또한 처음의 <html> 태그에 아래처럼 속성이 포함되어야 한다네요) or Korean (한글에서는) So the simple html structure looks like this. ::Title:: --::Navigation::-- --::Contents::-- 1. tag and tag attribute must Lowercase. No <Body> tag (태그 태그 속성은 소문자. <Body> 와 같이 쓸 수 [...]