Udemy의 Web Developer Bootcamp 강의를 듣고 HTML부분을 정리
HTML Tables
Tables: TR, TD, and TH Elements
<td>
: single cell in a table that contains data.<tr>
: talbe row, a row of cells in a table. <th>
: table heading or header. bolded by defaultTables: Thead, Tbody, and Tfoot Elements
<thead>
,<tfoot>
,<tbody>
Tables: Colspan & Rowspan
The Form Element
Common Input Types
The All-Important Label
HTML Buttons
The Name Attribute
"Hijacking" Google & Reddit's Search
<form action="https://www.reddit.com/search">
<input type="text" name="q">
<button>search</button>
</form>
Radio Buttons, Checkboxes, & Selects
<option>
Range & Text Area
HTML5 Form Validations
HTML의 form을 다시 배우면서 서버에 어떻게 요청을 보내는지에 대한 원리에 대해 다시 공부해 보는 계기가 되었다. React나 Vue같은 프레임워크에서는 id, for 이런 속성없이 상태변수들을 많이 이용했어서 HTML의 기본 폼의 원리에 대해 많이 잊었던 것 같다. 이번 강의에서 HTML을 통해 데이터를 어떻게 보내는지 다시 한번 생각해 보게 되었다.