5/17 TIL

이승준·2023년 5월 17일
0

TIL

목록 보기
3/67
post-thumbnail

5/17 메모

3조 결과물 aws배포

http://myweb.eba-twxm7gm5.ap-northeast-2.elasticbeanstalk.com/team

5/18 코딩

<div class="menu">
      <button type="button" onclick="location.href='/';" class="btn btn-warning mybtn">
        Team B3
      </button>
      <button type="button" onclick="location.href='/team';" class="btn btn-warning mybtn">
        팀원 소개
      </button>
      <button type="button" onclick="location.href='/team';" class="btn btn-warning mybtn">
        팀원 등록
      </button>
</div> # onclick 으로 하이퍼링크, 로컬에 있는 파일도 불러올 수 있더라

<style>
      .menu {
            max-width: 1000px;
            margin: auto;
            padding-top: 20px;
            padding-bottom: 20px;
            display: flex;
            justify-content: space-around;
            background-color: whitesmoke;
          }
</style> # padding으로 좀 더 깔끔하게 할 수 있었다. 
# 이 외 에도 구글에 다양한 소스가 있었다.

5/17 일기

  • api 구현
  • 다른 사람의 완성 된 소스를 모두 가져와서 실행해 보았는데
    잘 되지 않았고, DB를 내 것으로 바꾸어서 했더니 POST 기능만 되더라
    최종본으로 한번 더 해봐야겠다.
  • css는 경험과 소스가 중요해 보인다.
  • 변수명 정하는 것이 매우매우매우 중요하다. 작업마다 바뀌니까 일이 많아지는 듯
  • 오늘도 Github의 필요성을 절실히 느낀다

0개의 댓글