본문 바로가기

프론트엔드

HTML Tag - Table, List, Form

Table

<table border = 1> // 표 테두리 두께
  <caption>강의실안내</caption> // 표 설명 추가
  <tr> // 행
    <td>과목명</td> // 셀
    <th>학점</th> // 볼드처리
  </tr>

</table>

 

List

<h2>Unordered List</h2>
<ul> // Unordered List: 점으로 나열
  <li>빅데이터 분석</li>
</ul>
<ol> // ordered List: 숫자로 나열
  <i>빅데이터 분석</li>
</ol>

 

Form

<form>
   이름<br>
   <input type="text"><br>
   성별<br>
   <input type="radio" name="gender">남성
   <inpot type="radio" name="gender">여성<br>
   <input type="submit">
<form>```

'프론트엔드' 카테고리의 다른 글

CSS 기초 개념  (0) 2023.11.15
HTML 기초 Tag  (0) 2023.11.15
HTML  (0) 2023.11.15
IP와 Port  (1) 2023.11.15
Web과 HTTP  (0) 2023.11.15