반응형 웹 사이트를 만들기 강의 입니다.
이번 강의는 게시판 한줄효과 예제입니다.
영상을 보시면서 하나하나씩 따라하면서 익혀주세요.
틀린 부분은 직접 찾아서 고쳐보도록 노력해 보셨으면 합니다. 이것 또한 본인에게 큰 도움이 될 것입니다.
정말 정말 안될시에는 저에게 댓글을~
마지막 영상까지 화이팅입니다!!!
Code Youtube
사용 프로그램
∗ filezilla - CLICK
∗ brackets - CLICK
∗ sublime - CLICK
∗ visualstudio - CLICK
- 에디터는 본인이 편한것으로 사용하시면 되고, 저는 이번 강의에서 sublime을 사용하였습니다. -
Code example
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="author" content="webstoryboy">
<meta name="description" content="반응형 사이트 따라하기">
<meta name="keywords" content="반응형사이트, 웹퍼블리셔, 웹접근성, HTML5, webstoryboy, webs">
<title>반응형 사이트 만들기</title>
<!-- style -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome.css">
<!-- Facebook meta tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="반응형 사이트 만들기(title)" />
<meta property="og:url" content="http://richclub8.dothome.co.kr/responsive/html5/index.html" />
<meta property="og:image" content="http://richclub8.dothome.co.kr/assets/ico/icon.png" />
<meta property="og:site_name" content="반응형 사이트 만들기(site_name)" />
<meta property="og:description" content="반응형 사이트 따라하기(description)" />
<!-- twitter meta tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@webstoryboy" />
<meta name="twitter:title" content="반응형 사이트 만들기(title)" />
<meta name="twitter:description" content="반응형 사이트 만들기(description)." />
<meta property="twitter:image" content="http://richclub8.dothome.co.kr/assets/ico/icon.png" />
<!-- 파비콘 -->
<link rel="shortcut icon" href="icon/favicon-152.png">
<link rel="apple-touch-icon-precomposed" href="icon/favicon-152.png">
<link rel="icon" href="path/to/favicon.png">
<link rel="icon" href="icon/favicon-16.png" sizes="16x16">
<link rel="icon" href="icon/favicon-32.png" sizes="32x32">
<link rel="icon" href="icon/favicon-48.png" sizes="48x48">
<link rel="icon" href="icon/favicon-64.png" sizes="64x64">
<link rel="icon" href="icon/favicon-128.png" sizes="128x128">
<!-- 웹 폰트 -->
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nanum+Brush+Script" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abel&display=swap" rel="stylesheet">
<!-- HTLM5shiv ie6~8 -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script type="text/javascript">
alert("현재 당신이 보는 브라우저는 지원하지 않습니다. 최신 브라우저로 업데이트해주세요!");
</script>
<![endif]-->
<style>
/* 여백 초기화 */
body, div, ul, li, dl, dd, dt, ol, h1, h2, h3, h4, h5, h6, input, fieldset, legend, p, select, table, th, td, tr, textarea, button, form, figure, figcaption {margin:0; padding:0;}
/* a 링크 초기화 */
a {color: #222; text-decoration: none;}
a:hover {color: #2698cb;}
/* 폰트 초기화 */
body, input, textarea, select, button, table {font-family: 'Nanum Gothic', AppleSDGothicNeo-Regular,'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif; color: #222; font-size: 13px; line-height: 1.5;}
/* 폰트 스타일 초기화 */
em, address {font-style: normal;}
/* 블릿기호 초기화 */
ul, li, ol {list-style: none;}
/* 제목 태그 초기화 */
h1, h2, h3, h4, h5, h6 {font-size: 13px; font-weight: normal;}
/* IR 효과 */
.ir_pm {display:block; overflow:hidden; font-size:0; line-height:0; text-indent:-9999px;} /* 의미있는 이미지의 대체 텍스트를 제공하는 경우(Phark Method) */
.ir_wa {display:block; overflow:hidden; position:relative; z-index:-1; width:100%; height: 100%;} /* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 대체 텍스트를 보여주고자 할 때(WA IR) */
.ir_su {overflow: hidden; position:absolute; width:0; height:0; line-height:0; text-indent:-9999px;} /* 대체 텍스트가 아닌 접근성을 위한 숨김 텍스트를 제공할 때 */
/* margin, padding */
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
</style>
<style>
/* 레이아웃 */
body {background: url(../img/header_bg.jpg) repeat-x center top;}
#header {}
#nav {background-color: #f6fdff;}
#title {background-color: #eaf7fd;}
#contents .container {border-right: 1px solid #dbdbdb; border-left: 1px solid #dbdbdb;}
#cont_left {float: left; width: 250px;}
#cont_center {
overflow: hidden; min-height: 1300px; margin-right: 250px;
border-right: 1px solid #dbdbdb;
border-left: 1px solid #dbdbdb;
}
#cont_right {position: absolute; right: 0; top: 0; width: 250px;}
#footer {border-top: 1px solid #dbdbdb;}
/* 컨테이너 */
.container {position: relative; width: 1200px; margin: 0 auto; /* background: rgba(0,0,0,0.3); */}
/* 헤더 */
.header {height: 327px;}
.header .header_menu {text-align: right;}
.header .header_menu a {color: #fff; padding: 8px 0 6px 10px; display: inline-block; transition: color 0.3s ease; font-family: 'Abel', sans-serif;}
.header .header_menu a:hover {color: #ccc;}
.header .header_tit {text-align: center; text-transform: uppercase; margin-top: 55px; font-family: 'Abel', sans-serif;}
.header .header_tit h1 {
font-size: 30px;
color: #fff;
background: #51b0dc;
display: inline-block;
padding: 5px 30px 5px 30px;
letter-spacing: 2px;
font-weight: 900;
transition: box-shadow 0.25s ease-in-out;
}
.header .header_tit h1:hover {
box-shadow:
inset -9em 0 0 0 #257fac,
inset 9em 0 0 0 #257fac;
}
.header .header_tit a {
font-size: 16px;
color: #fff;
background: #4a9abf;
display: inline-block;
padding: 10px 20px 10px 20px;
margin-top: -7px;
transition: box-shadow 0.25s ease-in-out;
}
.header .header_tit a:hover {
box-shadow:
0 0 0 5px rgba(75,154,191,0.9) inset,
0 0 0 100px rgba(0,0,0,0.1) inset;
}
.header .header_icon {text-align: center; margin-top: 40px; padding-bottom: 45px;}
.header .header_icon li {display: inline; margin: 0 2px;}
.header .header_icon li a {
position: relative;
background-color: #3192bf;
border-radius: 50%;
width: 60px; height: 60px;
color: #fff; display:
inline-block;
font-size: 35px;
line-height: 60px;
transition: all 0.3s ease;
}
.header .header_icon li a span {
position: absolute;
left: 50%; top: -40px;
transform: translateX(-50%);
font-size: 12px;
line-height: 1.6;
background: #3192bf;
padding: 3px 9px;
border-radius: 6px 0;
opacity: 0;
transition: all 0.3s ease;
}
.header .header_icon li a span:before {
content:'';
position: absolute;
left: 50%; bottom: -5px;
margin-left: -5px;
border-top: 5px solid #3192bf;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
.header .header_icon li a:hover span {
opacity: 1;
top: -33px;
}
.header .header_icon li a:hover {
box-shadow:
0 0 0 3px rgba(75,154,191,0.9) inset,
0 0 0 100px rgba(0,0,0,0.1) inset;
}
/* 전체 메뉴 */
.nav {overflow: hidden; padding: 25px 0; display: none;}
.nav > div {float: left; width: 40%;}
.nav > div:last-child {width: 20%;}
.nav > div ol {overflow: hidden;}
.nav > div li {float: left; width: 50%; position: relative; padding-left: 8px; box-sizing: border-box;}
.nav > div:last-child li {width: 100%;}
.nav > div li:before {
content: '';
width: 3px; height: 3px;
background-color: #25a2d0;
border-radius: 50%;
position: absolute; left: 0; top: 6px;
}
.nav > div h3 {font-size: 18px; color: #25a2d0; font-weight: bold; margin-bottom: 4px;}
.nav > div li a {position: relative;}
.nav > div li a:after {
content: '';
display: inline-block;
width: 0; height: 1px;
background: #25aad0;
transition: all .2s ease-out;
position: absolute; bottom: 0; left: 0;
}
.nav > div li:hover a:after {width: 100%;}
/* 타이틀 */
.title {position: relative; text-align: center;}
.title h2 {font-family: 'Nanum Brush Script', cursive; font-size: 39px; color: #0093bd; padding: 5px 0;}
.title .btn {
position: absolute; right: 0; top: 5px;
width: 60px; height: 60px;
line-height: 60px;
background: #3192bf; color: #fff;
font-size: 35px;
border-radius: 50%;
transition: all 0.3s ease;
}
.title .btn:hover {
box-shadow:
0 0 0 3px rgba(71,154,191,0.9) inset,
0 0 0 100px rgba(0,0,0,0.1) inset;
}
/* 컨텐츠 영역 */
.column {padding: 15px; border-bottom: 1px solid #dbdbdb;}
.column .col_tit {font-size: 20px; color: #2f7fa6; padding-bottom: 5px;}
.column .col_desc {
border-bottom: 1px dashed #dbdbdb;
padding-bottom: 15px; margin-bottom: 15px;
color: #878787; line-height: 18px;
}
.column.col1 {}
.column.col2 {}
.column.col3 {border-bottom: 0;}
.column.col4 {}
.column.col5 {}
.column.col6 {border-bottom: 0;}
.column.col7 {}
.column.col8 {}
.column.col9 {border-bottom: 0;}
/* 메뉴 */
.menu {}
.menu li {position: relative;}
.menu li a {
font-size: 16px; text-transform: uppercase;
color: #878787;
border-bottom: 1px solid #dbdbdb;
padding: 10px; display: block;
transition: box-shadow 0.34s ease, background 0.34s ease;
}
.menu li a i {
position: absolute; right: 10px; top: 15px;
}
.menu li a:hover {
box-shadow: inset 180px 0 0 0 rgba(36,130,174,0.7);
color: #fff;
background: rgba(36,130,174,0.9);
}
/* 게시판1 */
.notice1 h5 {font-size: 14px; color: #2f7fa6; padding-bottom: 5px;}
.notice1 li {position: relative; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-left: 8px;}
.notice1 li:before {
content: '';
width: 3px; height: 3px;
border-radius: 50%;
background: #449ce2;
position: absolute; left: 0; top: 6px;
}
/* media query*/
/* 화면 너비 0 ~ 1220px */
@media (max-width: 1220px){
.container {width: 100%;}
.row {padding: 0 15px;}
#contents .container {border: 0;}
.title .btn {right: 5px;}
}
/* 화면 너비 0 ~ 1024px */
@media (max-width: 1024px){
}
/* 화면 너비 0 ~ 960px */
@media (max-width: 960px){
#cont_right {position: static; width: 100%; border-top: 1px solid #dbdbdb;}
#cont_center {margin-right: 0; border-right: 0;}
.nav > div {float: none; width: 100%;}
.nav > div:last-child {width: 100%;}
.nav > div li {width: 33.33333%;}
.nav > div:last-child li {width: 33.33333%;}
.nav > div ol {margin-bottom: 10px;}
}
/* 화면 너비 0 ~ 768px */
@media (max-width: 768px){
#cont_left {float: none; width: 100%;}
#cont_center {border-left: 0;}
}
/* 화면 너비 0 ~ 600px */
@media (max-width: 600px){
.header {height: auto;}
.header .header_tit {display: none;}
.header .header_icon {display: none;}
.title .btn {display: none;}
.nav > div li {width: 50%;}
.nav > div:last-child li {width: 50%;}
.column.col1 .col_tit {display: none;}
.column.col1 .col_desc {display: none;}
.column.col1 .menu li a i {display: none;}
.column.col1 {padding: 0; border-bottom: 0;}
.column.col1 .menu ul {overflow: hidden;}
.column.col1 .menu li {float: left; width: 33.3333%; border-right: 1px solid #dbdbdb; text-align: center; box-sizing: border-box;}
.column.col1 .menu li:nth-child(3n) {border-right: 0;}
.column.col1 .menu li a {color: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.7);}
.column.col1 .menu li a:hover { box-shadow: none; background: rgba(36,130,174,0.3);}
.column.col2 {background: #fff;}
.column.col4 {border-top: 1px solid #dbdbdb;}
}
/* 화면 너비 0 ~ 480px */
@media (max-width: 480px){
}
/* 화면 너비 0 ~ 320px */
@media (max-width: 320px){
.nav > div li {width: 100%;}
.nav > div:last-child li {width: 100%;}
}
</style>
</head>
<body>
<header id="header">
<div class="container">
<div class="row">
<div class="header">
<div class="header_menu">
<a href="#">Blog</a>
<a href="#">Github</a>
<a href="#">Webstandard</a>
</div>
<!-- //header_menu -->
<div class="header_tit">
<h1>Professional Web Publishser</h1><br>
<a href="http://webstoryboy.co.kr">webstoryboy.co.kr</a>
</div>
<!-- //header_tit -->
<div class="header_icon">
<ul>
<li><a href="#"><i class="fa fa-html5" aria-hidden="true"></i><span>HTML5</span></a></li>
<li><a href="#"><i class="fa fa-github" aria-hidden="true"></i><span>Github</span></a></li>
<li><a href="#" class="facebook"><i class="fa fa-facebook-square" aria-hidden="true"></i><span>Facebook</span></a></li>
<li><a href="#" class="twitter"><i class="fa fa-twitter" aria-hidden="true"></i><span>twitter</span></a></li>
</ul>
</div>
<!-- //header_icon -->
<!--
https://developers.facebook.com/tools/debug/
https://cards-dev.twitter.com/validator
-->
</div>
</div>
</div>
</header>
<!-- //header -->
<nav id="nav">
<div class="container">
<div class="row">
<div class="nav">
<h2 class="ir_su">반응형 사이트 전체 메뉴</h2>
<div>
<h3>HTML Reference</h3>
<ol>
<li><a href="#">HTML 태그(Tag)</a></li>
<li><a href="#">블록 요소/인라인 요소</a></li>
<li><a href="#">DTD 선언</a></li>
<li><a href="#">언어 속성 설정</a></li>
<li><a href="#">HTML <title></a></li>
<li><a href="#">HTML <meta></a></li>
<li><a href="#">특수문자</a></li>
<li><a href="#">하이퍼 링크</a></li>
<li><a href="#">HTML <style></a></li>
<li><a href="#">HTML <html></a></li>
<li><a href="#">HTML <head></a></li>
<li><a href="#">HTML <div></a></li>
<li><a href="#">HTML <colgroup></a></li>
<li><a href="#">HTML <caption></a></li>
</ol>
</div>
<div>
<h3>CSS Reference</h3>
<ol>
<li><a href="#">CSS 선택자</a></li>
<li><a href="#">CSS 단위</a></li>
<li><a href="#">CSS 색상</a></li>
<li><a href="#">CSS 선언 방법</a></li>
<li><a href="#">상대주소와 절대주소</a></li>
<li><a href="#">CSS float</a></li>
<li><a href="#">이미지 표현 방법</a></li>
<li><a href="#">이미지 스프라이트</a></li>
<li><a href="#">IR 효과</a></li>
<li><a href="#">이미지 최적화</a></li>
<li><a href="#">background-color</a></li>
<li><a href="#">border-style</a></li>
<li><a href="#">font-size</a></li>
<li><a href="#">text-align</a></li>
</ol>
</div>
<div class="last">
<h3>Webstandard</h3>
<ol>
<li><a href="#">웹 표준</a></li>
<li><a href="#">웹 접근성</a></li>
<li><a href="#">W3C</a></li>
<li><a href="#">웹 접근성 연구소</a></li>
<li><a href="#">네이버 널리</a></li>
<li><a href="#">다음 다룸</a></li>
<li><a href="#">Webstandard</a></li>
</ol>
</div>
</div>
</div>
</div>
</nav>
<!-- nav -->
<article id="title">
<div class="container">
<div class="title">
<h2>"나는 퍼블리셔다"</h2>
<a href="#" class="btn">
<i class="fa fa-angle-down" aria-hidden="true"></i>
<span class="ir_su">전체메뉴 보기</span>
</a>
</div>
</div>
</article>
<!-- //title -->
<main>
<section id="contents">
<div class="container">
<h2 class="ir_su">반응형 사이트 컨텐츠</h2>
<section id="cont_left">
<h3 class="ir_su">반응형 사이트 왼쪽 컨텐츠</h3>
<article class="column col1">
<h4 class="col_tit">Menu</h4>
<p class="col_desc">box-shadow를 이용한 마우스 오버 효과입니다.</p>
<!-- 메뉴 -->
<div class="menu">
<ul>
<li><a href="#">Cafe <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">Tutorial <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">WebSite <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">Reference <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">CSS3 <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">HTML5 <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
</ul>
</div>
<!-- //메뉴 -->
</article>
<!-- //col1 -->
<article class="column col2">
<h4 class="col_tit">Notice</h4>
<p class="col_desc">게시판 영역의 한줄 효과와 두줄 효과 게시판입니다.</p>
<!-- 게시판 -->
<div class="notice1">
<h5>notice1</h5>
<ul>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
</ul>
</div>
<!-- //게시판 -->
<!-- 게시판2 -->
<div class="notice2 mt15">
<h5>notice2</h5>
<ul>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
</ul>
</div>
<!-- //게시판2 -->
</article>
<!-- //col -->
<article class="column col3">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col3 -->
</section>
<section id="cont_center">
<h3 class="ir_su">반응형 사이트 가운데 컨텐츠</h3>
<article class="column col4">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col4 -->
<article class="column col5">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col5 -->
<article class="column col6">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col6 -->
</section>
<section id="cont_right">
<h3 class="ir_su">반응형 사이트 오른쪽 컨텐츠</h3>
<article class="column col7">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col7 -->
<article class="column col8">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col8 -->
<article class="column col9">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col9 -->
</section>
</div>
</section>
<!-- //contents -->
</main>
<footer id="footer">
<div class="container">
<h2>반응형 사이트 푸터</h2>
</div>
</footer>
<!-- //footer -->
<!-- JavaScript Libraries -->
<script src="js/jquery.min_1.12.4.js"></script>
<script src="js/modernizr-custom.js"></script>
<script>
//http://www.facebook.com/sharer.php?u={페이지 제목}&t={페이지링크}
//http://twitter.com/intent/tweet?text={페이지 제목}&url={페이지링크}
//https://share.naver.com/web/shareView.nhn?url={페이지링크}&title={페이지 제목}
//https://plus.google.com/share?url={페이지링크}&t={페이지 제목}
$(".facebook").click(function(e){
e.preventDefault();
window.open('https://www.facebook.com/sharer/sharer.php?u=' +encodeURIComponent(document.URL)+'&t='+encodeURIComponent(document.title), 'facebooksharedialog', 'menubar=no, toolbar=no, resizable=yes, scrollbars=yes, height=300, width=600');
});
$(".twitter").click(function(e){
e.preventDefault();
window.open('https://twitter.com/intent/tweet?text=[%EA%B3%B5%EC%9C%A0]%20' +encodeURIComponent(document.URL)+'%20-%20'+encodeURIComponent(document.title), 'twittersharedialog', 'menubar=no, toolbar=no, resizable=yes, scrollbars=yes, height=300, width=600');
});
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="author" content="webstoryboy">
<meta name="description" content="반응형 사이트 따라하기">
<meta name="keywords" content="반응형사이트, 웹퍼블리셔, 웹접근성, HTML5, webstoryboy, webs">
<title>반응형 사이트 만들기</title>
<!-- style -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome.css">
<!-- Facebook meta tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="반응형 사이트 만들기(title)" />
<meta property="og:url" content="http://richclub8.dothome.co.kr/responsive/html5/index.html" />
<meta property="og:image" content="http://richclub8.dothome.co.kr/assets/ico/icon.png" />
<meta property="og:site_name" content="반응형 사이트 만들기(site_name)" />
<meta property="og:description" content="반응형 사이트 따라하기(description)" />
<!-- twitter meta tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@webstoryboy" />
<meta name="twitter:title" content="반응형 사이트 만들기(title)" />
<meta name="twitter:description" content="반응형 사이트 만들기(description)." />
<meta property="twitter:image" content="http://richclub8.dothome.co.kr/assets/ico/icon.png" />
<!-- 파비콘 -->
<link rel="shortcut icon" href="icon/favicon-152.png">
<link rel="apple-touch-icon-precomposed" href="icon/favicon-152.png">
<link rel="icon" href="path/to/favicon.png">
<link rel="icon" href="icon/favicon-16.png" sizes="16x16">
<link rel="icon" href="icon/favicon-32.png" sizes="32x32">
<link rel="icon" href="icon/favicon-48.png" sizes="48x48">
<link rel="icon" href="icon/favicon-64.png" sizes="64x64">
<link rel="icon" href="icon/favicon-128.png" sizes="128x128">
<!-- 웹 폰트 -->
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nanum+Brush+Script" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abel&display=swap" rel="stylesheet">
<!-- HTLM5shiv ie6~8 -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script type="text/javascript">
alert("현재 당신이 보는 브라우저는 지원하지 않습니다. 최신 브라우저로 업데이트해주세요!");
</script>
<![endif]-->
</head>
<body>
<header id="header">
<div class="container">
<div class="row">
<div class="header">
<div class="header_menu">
<a href="#">Blog</a>
<a href="#">Github</a>
<a href="#">Webstandard</a>
</div>
<!-- //header_menu -->
<div class="header_tit">
<h1>Professional Web Publishser</h1><br>
<a href="http://webstoryboy.co.kr">webstoryboy.co.kr</a>
</div>
<!-- //header_tit -->
<div class="header_icon">
<ul>
<li><a href="#"><i class="fa fa-html5" aria-hidden="true"></i><span>HTML5</span></a></li>
<li><a href="#"><i class="fa fa-github" aria-hidden="true"></i><span>Github</span></a></li>
<li><a href="#" class="facebook"><i class="fa fa-facebook-square" aria-hidden="true"></i><span>Facebook</span></a></li>
<li><a href="#" class="twitter"><i class="fa fa-twitter" aria-hidden="true"></i><span>twitter</span></a></li>
</ul>
</div>
<!-- //header_icon -->
<!--
https://developers.facebook.com/tools/debug/
https://cards-dev.twitter.com/validator
-->
</div>
</div>
</div>
</header>
<!-- //header -->
<nav id="nav">
<div class="container">
<div class="row">
<div class="nav">
<h2 class="ir_su">반응형 사이트 전체 메뉴</h2>
<div>
<h3>HTML Reference</h3>
<ol>
<li><a href="#">HTML 태그(Tag)</a></li>
<li><a href="#">블록 요소/인라인 요소</a></li>
<li><a href="#">DTD 선언</a></li>
<li><a href="#">언어 속성 설정</a></li>
<li><a href="#">HTML <title></a></li>
<li><a href="#">HTML <meta></a></li>
<li><a href="#">특수문자</a></li>
<li><a href="#">하이퍼 링크</a></li>
<li><a href="#">HTML <style></a></li>
<li><a href="#">HTML <html></a></li>
<li><a href="#">HTML <head></a></li>
<li><a href="#">HTML <div></a></li>
<li><a href="#">HTML <colgroup></a></li>
<li><a href="#">HTML <caption></a></li>
</ol>
</div>
<div>
<h3>CSS Reference</h3>
<ol>
<li><a href="#">CSS 선택자</a></li>
<li><a href="#">CSS 단위</a></li>
<li><a href="#">CSS 색상</a></li>
<li><a href="#">CSS 선언 방법</a></li>
<li><a href="#">상대주소와 절대주소</a></li>
<li><a href="#">CSS float</a></li>
<li><a href="#">이미지 표현 방법</a></li>
<li><a href="#">이미지 스프라이트</a></li>
<li><a href="#">IR 효과</a></li>
<li><a href="#">이미지 최적화</a></li>
<li><a href="#">background-color</a></li>
<li><a href="#">border-style</a></li>
<li><a href="#">font-size</a></li>
<li><a href="#">text-align</a></li>
</ol>
</div>
<div class="last">
<h3>Webstandard</h3>
<ol>
<li><a href="#">웹 표준</a></li>
<li><a href="#">웹 접근성</a></li>
<li><a href="#">W3C</a></li>
<li><a href="#">웹 접근성 연구소</a></li>
<li><a href="#">네이버 널리</a></li>
<li><a href="#">다음 다룸</a></li>
<li><a href="#">Webstandard</a></li>
</ol>
</div>
</div>
</div>
</div>
</nav>
<!-- nav -->
<article id="title">
<div class="container">
<div class="title">
<h2>"나는 퍼블리셔다"</h2>
<a href="#" class="btn">
<i class="fa fa-angle-down" aria-hidden="true"></i>
<span class="ir_su">전체메뉴 보기</span>
</a>
</div>
</div>
</article>
<!-- //title -->
<main>
<section id="contents">
<div class="container">
<h2 class="ir_su">반응형 사이트 컨텐츠</h2>
<section id="cont_left">
<h3 class="ir_su">반응형 사이트 왼쪽 컨텐츠</h3>
<article class="column col1">
<h4 class="col_tit">Menu</h4>
<p class="col_desc">box-shadow를 이용한 마우스 오버 효과입니다.</p>
<!-- 메뉴 -->
<div class="menu">
<ul>
<li><a href="#">Cafe <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">Tutorial <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">WebSite <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">Reference <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">CSS3 <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
<li><a href="#">HTML5 <i class="fa fa-angle-double-right" aria-hidden="true"></i></a></li>
</ul>
</div>
<!-- //메뉴 -->
</article>
<!-- //col1 -->
<article class="column col2">
<h4 class="col_tit">Notice</h4>
<p class="col_desc">게시판 영역의 한줄 효과와 두줄 효과 게시판입니다.</p>
<!-- 게시판 -->
<div class="notice1">
<h5>notice1</h5>
<ul>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
</ul>
</div>
<!-- //게시판 -->
<!-- 게시판2 -->
<div class="notice2 mt15">
<h5>notice2</h5>
<ul>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
<li><a href="#">이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다. 이 줄은 한 줄 효과입니다.</a></li>
</ul>
</div>
<!-- //게시판2 -->
</article>
<!-- //col -->
<article class="column col3">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col3 -->
</section>
<section id="cont_center">
<h3 class="ir_su">반응형 사이트 가운데 컨텐츠</h3>
<article class="column col4">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col4 -->
<article class="column col5">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col5 -->
<article class="column col6">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col6 -->
</section>
<section id="cont_right">
<h3 class="ir_su">반응형 사이트 오른쪽 컨텐츠</h3>
<article class="column col7">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col7 -->
<article class="column col8">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col8 -->
<article class="column col9">
<h4 class="col_tit">Title</h4>
<p class="col_desc">이 곳은 설명 부분입니다.</p>
<!-- -->
<!-- // -->
</article>
<!-- //col9 -->
</section>
</div>
</section>
<!-- //contents -->
</main>
<footer id="footer">
<div class="container">
<h2>반응형 사이트 푸터</h2>
</div>
</footer>
<!-- //footer -->
<!-- JavaScript Libraries -->
<script src="js/jquery.min_1.12.4.js"></script>
<script src="js/modernizr-custom.js"></script>
<script>
//http://www.facebook.com/sharer.php?u={페이지 제목}&t={페이지링크}
//http://twitter.com/intent/tweet?text={페이지 제목}&url={페이지링크}
//https://share.naver.com/web/shareView.nhn?url={페이지링크}&title={페이지 제목}
//https://plus.google.com/share?url={페이지링크}&t={페이지 제목}
$(".facebook").click(function(e){
e.preventDefault();
window.open('https://www.facebook.com/sharer/sharer.php?u=' +encodeURIComponent(document.URL)+'&t='+encodeURIComponent(document.title), 'facebooksharedialog', 'menubar=no, toolbar=no, resizable=yes, scrollbars=yes, height=300, width=600');
});
$(".twitter").click(function(e){
e.preventDefault();
window.open('https://twitter.com/intent/tweet?text=[%EA%B3%B5%EC%9C%A0]%20' +encodeURIComponent(document.URL)+'%20-%20'+encodeURIComponent(document.title), 'twittersharedialog', 'menubar=no, toolbar=no, resizable=yes, scrollbars=yes, height=300, width=600');
});
</script>
</body>
</html>
/* 레이아웃 */
body {background: url(../img/header_bg.jpg) repeat-x center top;}
#header {}
#nav {background-color: #f6fdff;}
#title {background-color: #eaf7fd;}
#contents .container {border-right: 1px solid #dbdbdb; border-left: 1px solid #dbdbdb;}
#cont_left {float: left; width: 250px;}
#cont_center {
overflow: hidden; min-height: 1300px; margin-right: 250px;
border-right: 1px solid #dbdbdb;
border-left: 1px solid #dbdbdb;
}
#cont_right {position: absolute; right: 0; top: 0; width: 250px;}
#footer {border-top: 1px solid #dbdbdb;}
/* 컨테이너 */
.container {position: relative; width: 1200px; margin: 0 auto; /* background: rgba(0,0,0,0.3); */}
/* 헤더 */
.header {height: 327px;}
.header .header_menu {text-align: right;}
.header .header_menu a {color: #fff; padding: 8px 0 6px 10px; display: inline-block; transition: color 0.3s ease; font-family: 'Abel', sans-serif;}
.header .header_menu a:hover {color: #ccc;}
.header .header_tit {text-align: center; text-transform: uppercase; margin-top: 55px; font-family: 'Abel', sans-serif;}
.header .header_tit h1 {
font-size: 30px;
color: #fff;
background: #51b0dc;
display: inline-block;
padding: 5px 30px 5px 30px;
letter-spacing: 2px;
font-weight: 900;
transition: box-shadow 0.25s ease-in-out;
}
.header .header_tit h1:hover {
box-shadow:
inset -9em 0 0 0 #257fac,
inset 9em 0 0 0 #257fac;
}
.header .header_tit a {
font-size: 16px;
color: #fff;
background: #4a9abf;
display: inline-block;
padding: 10px 20px 10px 20px;
margin-top: -7px;
transition: box-shadow 0.25s ease-in-out;
}
.header .header_tit a:hover {
box-shadow:
0 0 0 5px rgba(75,154,191,0.9) inset,
0 0 0 100px rgba(0,0,0,0.1) inset;
}
.header .header_icon {text-align: center; margin-top: 40px; padding-bottom: 45px;}
.header .header_icon li {display: inline; margin: 0 2px;}
.header .header_icon li a {
position: relative;
background-color: #3192bf;
border-radius: 50%;
width: 60px; height: 60px;
color: #fff; display:
inline-block;
font-size: 35px;
line-height: 60px;
transition: all 0.3s ease;
}
.header .header_icon li a span {
position: absolute;
left: 50%; top: -40px;
transform: translateX(-50%);
font-size: 12px;
line-height: 1.6;
background: #3192bf;
padding: 3px 9px;
border-radius: 6px 0;
opacity: 0;
transition: all 0.3s ease;
}
.header .header_icon li a span:before {
content:'';
position: absolute;
left: 50%; bottom: -5px;
margin-left: -5px;
border-top: 5px solid #3192bf;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
}
.header .header_icon li a:hover span {
opacity: 1;
top: -33px;
}
.header .header_icon li a:hover {
box-shadow:
0 0 0 3px rgba(75,154,191,0.9) inset,
0 0 0 100px rgba(0,0,0,0.1) inset;
}
/* 전체 메뉴 */
.nav {overflow: hidden; padding: 25px 0; display: none;}
.nav > div {float: left; width: 40%;}
.nav > div:last-child {width: 20%;}
.nav > div ol {overflow: hidden;}
.nav > div li {float: left; width: 50%; position: relative; padding-left: 8px; box-sizing: border-box;}
.nav > div:last-child li {width: 100%;}
.nav > div li:before {
content: '';
width: 3px; height: 3px;
background-color: #25a2d0;
border-radius: 50%;
position: absolute; left: 0; top: 6px;
}
.nav > div h3 {font-size: 18px; color: #25a2d0; font-weight: bold; margin-bottom: 4px;}
.nav > div li a {position: relative;}
.nav > div li a:after {
content: '';
display: inline-block;
width: 0; height: 1px;
background: #25aad0;
transition: all .2s ease-out;
position: absolute; bottom: 0; left: 0;
}
.nav > div li:hover a:after {width: 100%;}
/* 타이틀 */
.title {position: relative; text-align: center;}
.title h2 {font-family: 'Nanum Brush Script', cursive; font-size: 39px; color: #0093bd; padding: 5px 0;}
.title .btn {
position: absolute; right: 0; top: 5px;
width: 60px; height: 60px;
line-height: 60px;
background: #3192bf; color: #fff;
font-size: 35px;
border-radius: 50%;
transition: all 0.3s ease;
}
.title .btn:hover {
box-shadow:
0 0 0 3px rgba(71,154,191,0.9) inset,
0 0 0 100px rgba(0,0,0,0.1) inset;
}
/* 컨텐츠 영역 */
.column {padding: 15px; border-bottom: 1px solid #dbdbdb;}
.column .col_tit {font-size: 20px; color: #2f7fa6; padding-bottom: 5px;}
.column .col_desc {
border-bottom: 1px dashed #dbdbdb;
padding-bottom: 15px; margin-bottom: 15px;
color: #878787; line-height: 18px;
}
.column.col1 {}
.column.col2 {}
.column.col3 {border-bottom: 0;}
.column.col4 {}
.column.col5 {}
.column.col6 {border-bottom: 0;}
.column.col7 {}
.column.col8 {}
.column.col9 {border-bottom: 0;}
/* 메뉴 */
.menu {}
.menu li {position: relative;}
.menu li a {
font-size: 16px; text-transform: uppercase;
color: #878787;
border-bottom: 1px solid #dbdbdb;
padding: 10px; display: block;
transition: box-shadow 0.34s ease, background 0.34s ease;
}
.menu li a i {
position: absolute; right: 10px; top: 15px;
}
.menu li a:hover {
box-shadow: inset 180px 0 0 0 rgba(36,130,174,0.7);
color: #fff;
background: rgba(36,130,174,0.9);
}
/* 게시판1 */
.notice1 h5 {font-size: 14px; color: #2f7fa6; padding-bottom: 5px;}
.notice1 li {position: relative; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-left: 8px;}
.notice1 li:before {
content: '';
width: 3px; height: 3px;
border-radius: 50%;
background: #449ce2;
position: absolute; left: 0; top: 6px;
}
/* media query*/
/* 화면 너비 0 ~ 1220px */
@media (max-width: 1220px){
.container {width: 100%;}
.row {padding: 0 15px;}
#contents .container {border: 0;}
.title .btn {right: 5px;}
}
/* 화면 너비 0 ~ 1024px */
@media (max-width: 1024px){
}
/* 화면 너비 0 ~ 960px */
@media (max-width: 960px){
#cont_right {position: static; width: 100%; border-top: 1px solid #dbdbdb;}
#cont_center {margin-right: 0; border-right: 0;}
.nav > div {float: none; width: 100%;}
.nav > div:last-child {width: 100%;}
.nav > div li {width: 33.33333%;}
.nav > div:last-child li {width: 33.33333%;}
.nav > div ol {margin-bottom: 10px;}
}
/* 화면 너비 0 ~ 768px */
@media (max-width: 768px){
#cont_left {float: none; width: 100%;}
#cont_center {border-left: 0;}
}
/* 화면 너비 0 ~ 600px */
@media (max-width: 600px){
.header {height: auto;}
.header .header_tit {display: none;}
.header .header_icon {display: none;}
.title .btn {display: none;}
.nav > div li {width: 50%;}
.nav > div:last-child li {width: 50%;}
.column.col1 .col_tit {display: none;}
.column.col1 .col_desc {display: none;}
.column.col1 .menu li a i {display: none;}
.column.col1 {padding: 0; border-bottom: 0;}
.column.col1 .menu ul {overflow: hidden;}
.column.col1 .menu li {float: left; width: 33.3333%; border-right: 1px solid #dbdbdb; text-align: center; box-sizing: border-box;}
.column.col1 .menu li:nth-child(3n) {border-right: 0;}
.column.col1 .menu li a {color: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.7);}
.column.col1 .menu li a:hover { box-shadow: none; background: rgba(36,130,174,0.3);}
.column.col2 {background: #fff;}
.column.col4 {border-top: 1px solid #dbdbdb;}
}
/* 화면 너비 0 ~ 480px */
@media (max-width: 480px){
}
/* 화면 너비 0 ~ 320px */
@media (max-width: 320px){
.nav > div li {width: 100%;}
.nav > div:last-child li {width: 100%;}
}
/* 여백 초기화 */
body, div, ul, li, dl, dd, dt, ol, h1, h2, h3, h4, h5, h6, input, fieldset, legend, p, select, table, th, td, tr, textarea, button, form, figure, figcaption {margin:0; padding:0;}
/* a 링크 초기화 */
a {color: #222; text-decoration: none;}
a:hover {color: #2698cb;}
/* 폰트 초기화 */
body, input, textarea, select, button, table {font-family: 'Nanum Gothic', AppleSDGothicNeo-Regular,'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif; color: #222; font-size: 13px; line-height: 1.5;}
/* 폰트 스타일 초기화 */
em, address {font-style: normal;}
/* 블릿기호 초기화 */
ul, li, ol {list-style: none;}
/* 제목 태그 초기화 */
h1, h2, h3, h4, h5, h6 {font-size: 13px; font-weight: normal;}
/* IR 효과 */
.ir_pm {display:block; overflow:hidden; font-size:0; line-height:0; text-indent:-9999px;} /* 의미있는 이미지의 대체 텍스트를 제공하는 경우(Phark Method) */
.ir_wa {display:block; overflow:hidden; position:relative; z-index:-1; width:100%; height: 100%;} /* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 대체 텍스트를 보여주고자 할 때(WA IR) */
.ir_su {overflow: hidden; position:absolute; width:0; height:0; line-height:0; text-indent:-9999px;} /* 대체 텍스트가 아닌 접근성을 위한 숨김 텍스트를 제공할 때 */
/* margin, padding */
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
//http://www.facebook.com/sharer.php?u={페이지 제목}&t={페이지링크}
//http://twitter.com/intent/tweet?text={페이지 제목}&url={페이지링크}
//https://share.naver.com/web/shareView.nhn?url={페이지링크}&title={페이지 제목}
//https://plus.google.com/share?url={페이지링크}&t={페이지 제목}
$(".facebook").click(function(e){
e.preventDefault();
window.open('https://www.facebook.com/sharer/sharer.php?u=' +encodeURIComponent(document.URL)+'&t='+encodeURIComponent(document.title), 'facebooksharedialog', 'menubar=no, toolbar=no, resizable=yes, scrollbars=yes, height=300, width=600');
});
$(".twitter").click(function(e){
e.preventDefault();
window.open('https://twitter.com/intent/tweet?text=[%EA%B3%B5%EC%9C%A0]%20' +encodeURIComponent(document.URL)+'%20-%20'+encodeURIComponent(document.title), 'twittersharedialog', 'menubar=no, toolbar=no, resizable=yes, scrollbars=yes, height=300, width=600');
});
도움이 되셨다면 구독과 좋아요 버튼을 꾸욱~~!!
여러분의 댓글은 영상을 제작하는데 많은 힘이 됩니다.
모르시거나 궁금한 사항은 언제든지 댓글로 남겨주세요.
최대한 힘이 되어 드리겠습니다.
오늘도 수고하셨습니다.
728x90