Showing
5 changed files
with
202 additions
and
0 deletions
practice_5/index.html
0 → 100644
practice_css_table/index.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="ko"> | ||
| 3 | +<style> | ||
| 4 | + table { | ||
| 5 | + border-collapse: collapse; | ||
| 6 | + width: 100%; | ||
| 7 | + } | ||
| 8 | + | ||
| 9 | + th { | ||
| 10 | + padding: 4px 20px 4px 20px; | ||
| 11 | + background-color: lightblue; | ||
| 12 | + } | ||
| 13 | + | ||
| 14 | + td { | ||
| 15 | + padding: 4px 20px 4px 20px; | ||
| 16 | + text-align: center; | ||
| 17 | + } | ||
| 18 | + | ||
| 19 | + td:hover { | ||
| 20 | + background-color: #f2f2f2; | ||
| 21 | + } | ||
| 22 | + | ||
| 23 | + | ||
| 24 | +</style> | ||
| 25 | +<head> | ||
| 26 | + <meta charset="UTF-8"> | ||
| 27 | + <title>성준영 소개페이지</title> | ||
| 28 | +</head> | ||
| 29 | +<body> | ||
| 30 | + | ||
| 31 | +<img id="introduce-image" src="profileImage.png"/> | ||
| 32 | +<div id="introduce-intro"> | ||
| 33 | + <h1>성준영 소개페이지</h1> | ||
| 34 | + <span id="introduce-description"> 경희대학교 컴퓨터 공학과를 재학중인 평범한 개발자입니다. | ||
| 35 | + 주로 백엔드 개발에 관심이 있다고는 하지만 사실은 프론트엔드도 많이 궁금합니다.</span> | ||
| 36 | +</div> | ||
| 37 | + | ||
| 38 | +<div id="introduce-content"> | ||
| 39 | + <h2>이름</h2> | ||
| 40 | + <ul> | ||
| 41 | + <li> | ||
| 42 | + 성준영 | ||
| 43 | + </li> | ||
| 44 | + </ul> | ||
| 45 | + <h2>경력</h2> | ||
| 46 | + <ol> | ||
| 47 | + <li>경희대학교 컴퓨터공학과 - 2012.3 ~ NOW</li> | ||
| 48 | + <li>노마드스타 서버개발 인턴 - 2016.8 ~ 2017.3</li> | ||
| 49 | + </ol> | ||
| 50 | + <h2>발표</h2> | ||
| 51 | + <ol> | ||
| 52 | + <li>경희대학교 주최 소프트콘 - <a href="http://www.slideshare.net/SungJunyoung/ss-69345868">서버의 ㅅ 자도 몰랏던 스타트업 인턴의 아마존 웹 서비스 | ||
| 53 | + 서버 이전기</a></li> | ||
| 54 | + <li>네이버 D2 Campus Seminar- <a href="https://www.slideshare.net/deview/ss-72527503">텀 프로젝트에서 제품 프로젝트로</a></li> | ||
| 55 | + </ol> | ||
| 56 | + <h2>경험</h2> | ||
| 57 | + <table border="1px"> | ||
| 58 | + <tr> | ||
| 59 | + <th><b>구분</b></th> | ||
| 60 | + <th><b>경험</b></th> | ||
| 61 | + <th><b>경험정도</b></th> | ||
| 62 | + </tr> | ||
| 63 | + <tr> | ||
| 64 | + <th rowspan="5">AWS</th> | ||
| 65 | + <td>EC2</td> | ||
| 66 | + <td rowspan="5">Medium Level</td> | ||
| 67 | + </tr> | ||
| 68 | + <tr> | ||
| 69 | + <td>S3</td> | ||
| 70 | + </tr> | ||
| 71 | + <tr> | ||
| 72 | + <td>RDS</td> | ||
| 73 | + </tr> | ||
| 74 | + <tr> | ||
| 75 | + <td>dynamodb</td> | ||
| 76 | + </tr> | ||
| 77 | + <tr> | ||
| 78 | + <td>lambda</td> | ||
| 79 | + </tr> | ||
| 80 | + <tr> | ||
| 81 | + <th>PHP</th> | ||
| 82 | + <td>Codeigniter</td> | ||
| 83 | + <td>Low Level</td> | ||
| 84 | + </tr> | ||
| 85 | + <tr> | ||
| 86 | + <th rowspan="2">Javascrpt</th> | ||
| 87 | + <td>Frontend React.js</td> | ||
| 88 | + <td rowspan="2">Medium Level</td> | ||
| 89 | + </tr> | ||
| 90 | + <tr> | ||
| 91 | + <td>Backend Node.js</td> | ||
| 92 | + </tr> | ||
| 93 | + <tr> | ||
| 94 | + <th>Java</th> | ||
| 95 | + <td>Spring</td> | ||
| 96 | + <td>Medium Level</td> | ||
| 97 | + </tr> | ||
| 98 | + </table> | ||
| 99 | +</div> | ||
| 100 | + | ||
| 101 | +</body> | ||
| 102 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
practice_css_table/profileImage.png
0 → 100644
83.2 KB
quiz_1/2012104095.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="ko"> | ||
| 3 | +<style> | ||
| 4 | + h2 { | ||
| 5 | + | ||
| 6 | + } | ||
| 7 | +</style> | ||
| 8 | +<head> | ||
| 9 | + <meta charset="UTF-8"> | ||
| 10 | + <title>성준영 소개페이지</title> | ||
| 11 | +</head> | ||
| 12 | +<body> | ||
| 13 | + | ||
| 14 | +<img id="introduce-image" src="profileImage.png"/> | ||
| 15 | +<div id="introduce-intro"> | ||
| 16 | + <h1>성준영 소개페이지</h1> | ||
| 17 | + <span id="introduce-description"> 경희대학교 컴퓨터 공학과를 재학중인 평범한 개발자입니다. | ||
| 18 | + 주로 백엔드 개발에 관심이 있다고는 하지만 사실은 프론트엔드도 많이 궁금합니다.</span> | ||
| 19 | +</div> | ||
| 20 | + | ||
| 21 | +<div id="introduce-content"> | ||
| 22 | + <h2>이름</h2> | ||
| 23 | + <ul> | ||
| 24 | + <li> | ||
| 25 | + 성준영 | ||
| 26 | + </li> | ||
| 27 | + </ul> | ||
| 28 | + <h2>경력</h2> | ||
| 29 | + <ol> | ||
| 30 | + <li>경희대학교 컴퓨터공학과 - 2012.3 ~ NOW</li> | ||
| 31 | + <li>노마드스타 서버개발 인턴 - 2016.8 ~ 2017.3</li> | ||
| 32 | + </ol> | ||
| 33 | + <h2>발표</h2> | ||
| 34 | + <ol> | ||
| 35 | + <li>경희대학교 주최 소프트콘 - <a href="http://www.slideshare.net/SungJunyoung/ss-69345868">서버의 ㅅ 자도 몰랏던 스타트업 인턴의 아마존 웹 서비스 | ||
| 36 | + 서버 이전기</a></li> | ||
| 37 | + <li>네이버 D2 Campus Seminar- <a href="https://www.slideshare.net/deview/ss-72527503">텀 프로젝트에서 제품 프로젝트로</a></li> | ||
| 38 | + </ol> | ||
| 39 | + <h2>경험</h2> | ||
| 40 | + <table border="1px"> | ||
| 41 | + <tr> | ||
| 42 | + <th><b>구분</b></th> | ||
| 43 | + <th><b>경험</b></th> | ||
| 44 | + <th><b>경험정도</b></th> | ||
| 45 | + </tr> | ||
| 46 | + <tr> | ||
| 47 | + <th rowspan="5">AWS</th> | ||
| 48 | + <td>EC2</td> | ||
| 49 | + <td rowspan="5">Medium Level</td> | ||
| 50 | + </tr> | ||
| 51 | + <tr> | ||
| 52 | + <td>S3</td> | ||
| 53 | + </tr> | ||
| 54 | + <tr> | ||
| 55 | + <td>RDS</td> | ||
| 56 | + </tr> | ||
| 57 | + <tr> | ||
| 58 | + <td>dynamodb</td> | ||
| 59 | + </tr> | ||
| 60 | + <tr> | ||
| 61 | + <td>lambda</td> | ||
| 62 | + </tr> | ||
| 63 | + <tr> | ||
| 64 | + <th>PHP</th> | ||
| 65 | + <td>Codeigniter</td> | ||
| 66 | + <td>Low Level</td> | ||
| 67 | + </tr> | ||
| 68 | + <tr> | ||
| 69 | + <th rowspan="2">Javascrpt</th> | ||
| 70 | + <td>Frontend React.js</td> | ||
| 71 | + <td rowspan="2">Medium Level</td> | ||
| 72 | + </tr> | ||
| 73 | + <tr> | ||
| 74 | + <td>Backend Node.js</td> | ||
| 75 | + </tr> | ||
| 76 | + <tr> | ||
| 77 | + <th>Java</th> | ||
| 78 | + <td>Spring</td> | ||
| 79 | + <td>Medium Level</td> | ||
| 80 | + </tr> | ||
| 81 | + </table> | ||
| 82 | +</div> | ||
| 83 | + | ||
| 84 | +</body> | ||
| 85 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
quiz_1/profileImage.png
0 → 100644
83.2 KB
-
Please register or login to post a comment