Front-End/HTML5 + CSS
[HTML5] 3.Text Tag
리딩리드
2016. 8. 4. 15:23
3. Text Tag
3_1. <p>
- A paragraph is marked up
- Browsers automatically add some space
3_2. <blockquote>
- The tag specifies a section that is quoted from another source
- Browser usually indent <blockqoute> elements
3_3. <pre>
- Text in a <pre> element is displayed in a fixed-width font, and it preserves both spaces and line break
3_4. <mark>
- Use the tag if you want to highlight parts of your text
3_5. <ul, ol>
- ul tag defines a unordered list
- ol tag defines a ordered list
How to remove a point in front of list
3_6. <dl>
- dl tag defines a description list
- dl tag is used in conjunction with <dt> and <dd>