TIL - 20.10.09 (HTML)

예니·2020년 10월 9일
0

TIL

목록 보기
8/25

블로그 첫 글
velog 쓰면서 마크다운 문법도 익혀야겠다

언제쯤 정리를 잘하게될까😂
일단 꾸준히 써보자

Codecademy - HTML

📖 태그 정리

1. video

태그 마지막에 닫아줘야함

<video width="320" height="240" controls>
  <source src="영상url" type="video/mp4(영상타입)">
</video>
  • controls : 재생, 볼륨 조절 등 표시

2. ul, ol

3. 같은 페이지에서 이동

<a href="#id"> </a>
이동할 곳 id 적어주면 됨

4. table

<table>
  <tr>
    <th></th>
    <th scope="col">1</th>
    <th scope="col">2</th>
  </tr>
  <tr>
    <th scope="row">3</th>
    <td>4</td>
    <td>5</td>
  </tr>
</table>
  • tr : table row
  • td : table data (사이에 데이터 입력)
  • th : table heading (scope "row" "col")
  • thead tbody tfooter
  • rowspan colspan

0개의 댓글