본문 바로가기

웹 표준 사이트 만들기/레이아웃 구조 실습

웹 표준 사이트 만들기 1강

반응형
SMALL

'Brackets' 프로그램 설치

 

마우스 우클릭-> 파일 만들기

 

 

'01.layout01.html' 파일생성

 

확장 기능 관리자 들어가서

 

'Beautify', 'Brackets Synapse', 'Custom Work', 'Emmet', 'Everyscrub', 'Indent Guides' 설치

 

 

!(느낌표) 누르고 탭(Tab)을 누르면
'Emmet'을 설치했을 경우 자동 완성

 

 

입력 후

 

완성

 

 

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <title>Layout01</title>
    <style> 
        body {background: #c8e6c9;}
        #wrap {width: 1000px; height: 900px; margin: 0 auto; color: #fff; font-size: 40px; text-align: center;}
        #header {width: 1000px; height: 100px; line-height: 100px; background: #2e7d32;}
        #nav {width: 1000px; height: 100px; line-height: 100px; background: #388e3c; }
        #side {float: left; width: 300px; height: 600px; line-height: 600px; background: #43a047;}
        #contents {float: left; width: 700px; height: 600px; line-height: 600px; background: #4caf50;}
        #footer {float: left; width: 1000px; height: 100px; line-height: 100px; background: #66bb6a;}
</style>
</head>
<body>
    <div id="wrap">
        <div id="header">HEADER</div>
        <div id="nav">NAV</div>
        <div id="side">SIDE</div>
        <div id="contents">CONTENTS</div>
        <div id="footer">FOOTER</div>
    </div>
</body>
</html>

 

 

 

https://inf.run/Ks2S

https://inf.run/Ks2S

반응형
LIST