Frontend 자료집/HTML: FIN
[HTML] HTML
cogito30
2025. 4. 4. 09:47
반응형
HTML
- 웹 페이지의구조와 콘텐츠를 정의하는 마크업 언어
- 구조: <!DOCTYPE html>, <html>, <head>, <body>
- 시멘틱태그(SEO): <header>, <nav>, <main>, <aside>, <section>, <article>, <footer>
- 텍스트: <h1>-<h6>, <p>, <span>, <div>, <a href>
- 리스트: <ul>, <ol>, <li>
- 테이블: <table>, <th>, <td>, <tr>
- 미디어: <img src alt>, <audio controls controlsList>, <video controls controlsList>, <source>
- 폼: <form method action>, <input type name placeholder id>, <button>, <label for>, <fieldset>, <legend>, <select>, <option value>, <textarea>, <datalist>, <option>
반응형