수업 진행 

1~3교시 교재 진도 ( 자바, 오라클, JSP,  스프링 부트 프로젝트 등 )
4교시 시험 ( 오늘 공부한 것 퀴즈 )
점심 12시45분~13시55분
5교시 웹개발 ( 웹페이지 만들기 ) 안내
6교시 웹 페이지 만들기
7교시 과제 ( 오늘 만든 코드들 외우기 ) 
8교시 코드 리뷰 (자신이 만든 코드 설명하기)

 

 Oracle JDK 설치, Java11버전, 환경변수 설정 

이클립스 설치 및 셋팅. VSCODE 설치 및 셋팅 

강사 개인 1:1 상담 

HTML, CSS 간단하게 해보기

 

<!DOCTYPE html>
<html lang="en">

<style>
    .titles {
        color: white;
        text-align: center;
        padding-bottom: 100px;

        background-position: center;
        background-size: cover;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .titles > button {
        width: 200px;
        height: 50px;

        background-color: transparent;
        color: white;

        border-radius: 50px;
        border: 1px solid white;

        margin-top: 10px;
        }
S
        .titles > button:hover {
        border: 2px solid white;
        }




    #main { font-size: 100px; text-align: center;}
   
    #tables {background-color: aqua; margin-left: 200px; width: 500px; height: 150px;}
   
    a { text-decoration: none; color: black; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:focus { text-decoration: none; }
    a:hover, a:active { text-decoration: none; }
   
   
   
</style>

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>처음</title>
   
</head>
<body>
    <div class="titles">
    <h1>처음 페이지</h1>
    <button>버튼</button>
    </div>

    <hr>    
    <div>
   
    </div>
    <table id="tables" border="1">
        <tr><td><a href="https://www.naver.com/">네이버</a></td><td><a href="https://www.daum.net/">다음</a></td><td><a href="https://www.google.com/">구글</a></td></tr>
        <tr><td>1111</td><td>1111</td><td>1111</td></tr>
        <tr><td>1111</td><td>1111</td><td>1111</td></tr>
    </table>
    <ul>
        <li>사과</li>
        <li>바나나</li>
        <li></li>
    </ul>
    <ol>
        <li>사과</li>
        <li>바나나</li>
        <li></li>
    </ol>
    <button>
        box
    </button>
</body>
</html>

 

 

 

 

 

 

'프로젝트 기반 자바(JAVA) 응용 SW개발자 취업과정' 카테고리의 다른 글

2023-05-23 6일차  (0) 2023.05.23
2023-05-22 5일차  (0) 2023.05.22
2023-05-19 4일차  (0) 2023.05.19
2023-05-18 3일차  (0) 2023.05.18
2023-05-17 2일차  (0) 2023.05.17

+ Recent posts