꿈꾸는 새벽하늘

[생활코딩-WEB1] HTML (1) 본문

💻 Programming

[생활코딩-WEB1] HTML (1)

rovemin 2022. 3. 31. 04:55

 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

웹 프로그래밍을 공부하면서 궁금한 태그가 생길 때 아래 사이트를 참고하면 도움이 된다.

 

W3Schools Free Online Web Tutorials

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

'💻 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