본문 바로가기

html4

[TIL] 20201107 HTML: Forms & Tables Table What are tables? Structured sets of data, made up of rows and columns Early Usage In the early days of the web, tables were commonly used to create page layouts. Today, you should only use th etable element when you are creating an actually data table. elements & attributes table header defines a cell as header of a group of table cells. table row defines a row of cells in a table. table d.. 2020. 11. 7.
[TIL] 20201106 HTML: Next Steps & Semantics The latest evolution of the standard that defines HTML. It includes new elements & features for browsers to implement. A new version o fthe language HTML, with new elements, attributes, and behaviors. A larger set of technologies that allows the building of more diverse and powerful websites and applications. Living Standard : The HTML standard is a document that describes how HTML should work. .. 2020. 11. 7.
[TIL] 20201101 HTML: The essentials (2) HTML Boilerplate HTML Skeleton = Boilerplate Standardized markup that needs to go in every single html page Flag for the browser : "I'll use the lastest version of html." No closing tag Represents the root (top-level element) of an HTML document, so it is also referred to as the root element. Document metadata element Contains things that don't show up on the page. What goes on the tap of the br.. 2020. 11. 2.
[TIL] 20201028 HTML: The essentials (1) HTML Mark up language First created to describe the structure of academic research papers. HTML Elements To write HTML, we pick from a set of standard element that all browsers recognise. common elements include: : represents a paragraph of text : represents the main header on a page : embeds an image : represents a form HTML Tags Elements are created by writing tags. Most (but not all) elements.. 2020. 10. 28.