본문 바로가기
IT/JavaScript와 Framework

AngularJS ver.1.3.7 - 02-01 - 첫번째앱

by 골든크랩 2022. 2. 16.
728x90
반응형

 

1. 초기파일

<!DOCTYPE html>
<html data-ng-app>
    <head>
        <title>TO DO LIST</title>
        <link href="./angular-1.3.7/bootstrap-5.1.3-dist/css/bootstrap.css" rel="stylesheet" />
        <link href="./angular-1.3.7/bootstrap-5.1.3-dist/css/bootstrap-theme.css" rel="stylesheet" />
    </head>
    <body>
        <div class="page-header">
            <h1>골든크랩의 할일 들</h1>
        </div>
        <div class="panel">
            <div class=""input-group">
                <input class="form-control" />
                <span class=""input-group-btn">
                    <button class="btn btn-dark">Add</button>
                </span>
            </div>
            <table class="table table-striped">
                <thead>
                    <tr>
                        <th>Description</th>
                        <th>Done</th>
                    </tr>
                </thead>
                <tbody>
                    <tr><td>강의자료를 만든다.</td><td>No</td></tr>
                    <tr><td>해외주식을 산다.</td><td>No</td></tr>
                    <tr><td>친구에게 술을 산다.</td><td>Yes</td></tr>
                    <tr><td>여행준비를 한다.</td><td>No</td></tr>
                </tbody>
            </table>
        </div>
    </body>


728x90
반응형

'IT > JavaScript와 Framework' 카테고리의 다른 글

AngularJS ver.1.3.7 - 02-02  (0) 2022.02.21
AngularJS Directives 정리  (0) 2022.02.16
Node.js 노드 설치하기  (0) 2022.02.16
AngularJS 구버전(여기선 1.3.7) 개발환경 꾸미기  (0) 2022.02.16
AngularJS 개념 잡기  (0) 2022.02.16

댓글