본문 바로가기

WEB/CSS

CSS3 - 프로젝트용 css

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <title>Python 웹프로젝트 v1</title>
    <link rel="stylesheet" href="css/normalize.css">
    <link rel="stylesheet" href="css/webproject.css">
    <style>
        form { /* border:1px solid red; */ width: 60%;
            margin:65px auto 10px}
        form div {margin-top: 10px}
        form label {display: inline-block;
            width: 120px; text-align: right;
            font-weight: bold; margin-right: 15px}

        .dragup {vertical-align: top; margin-top: 80px }


    </style>
</head>




<body>
<div id="wrap">
    <header>
        <h1>Python 웹 프로젝트 v1</h1>
        <nav>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="join.html">회원가입</a></li>
                <li><a href="login.html">로그인</a></li>
                <li><a href="board.html">게시판</a></li>
                <li><a href="myinfo.html">회원정보</a></li>
            </ul>
        </nav>
        <hr>

    </header>



 <h2>게시판 새글쓰기</h2>

    <div id="main">
        <form name="boardfrm" method="post" action="board.do">

        <div ><label>제목</label>
                <input type="text" name="title" id="title"></div>

        <div><label for="title">작성자</label>
            <span>&nbsp; zzyzzy</span></div>

        <div><label for="contents" class="dragup">본문</label>
            <textarea name="contents" id="contents"
                      rows="10" cols="50"
                      style="resize:none"></textarea></div>

        <div><label></label>
            <button type="submit"> 입력완료</button>
            <button type="reset"> 다시입력</button>
        </div>
        </form>
    </div>



    <footer>
        <hr>
        <span>copyright &copy; zzyzzy. all right reserved.</span>
    </footer>
</div>






</body>
</html>

'WEB > CSS' 카테고리의 다른 글

CSS3 - project (웹)  (0) 2022.06.08
CSS3 - float, flex  (0) 2022.06.08
CSS3 - background, table  (0) 2022.06.08
CSS3 - list, position  (0) 2022.06.08
CSS3 - text, display  (0) 2022.06.08