Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 매핑
- AWS
- 트랜잭션
- 장고
- Django
- 다대다
- 바닐라js
- javascript
- nomadcoder
- SBERT
- 프론트엔드
- 플러시
- clonecoding
- JPA
- React
- python
- 노마드코더
- html
- css
- 영속성 컨텍스트
- 장고독학
- frontend
- web
- ORM
- JS
- 일대다
- 단방향
- java
- TODO
- 다대일
Archives
- Today
- Total
꿈꾸는 새벽하늘
[생활코딩-WEB1] HTML (1) 본문
HTML(HyperText Markup Language) : Basic Tag
1. Bold Tag & Underline Tag
<strong>This is my web page</strong> : Bold
<u>web</u> : underline
<Example>
This is <strong><u>my</u> web</strong>
=> This is my web
2. Heading Tag
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
3. New Line Tag
I am a student.<br>
What is your name?<br>
Nice to meet you.<br>
4. Paragraph Tag
I am a student.
<p>What is your name? Nice to meet you.</p>
⭐ W3Schools
웹 프로그래밍을 공부하면서 궁금한 태그가 생길 때 아래 사이트를 참고하면 도움이 된다.
'💻 Programming' 카테고리의 다른 글
[노마드코더] JavaScript (2) (0) | 2022.06.23 |
---|---|
[노마드코더] JavaScript (1) (0) | 2022.06.23 |
[생활코딩-WEB2] CSS (2) (0) | 2022.06.21 |
[생활코딩-WEB2] CSS (1) (0) | 2022.05.04 |
[생활코딩-WEB1] HTML (2) (0) | 2022.04.07 |