웹 프로그래밍/HTML

생활코딩 선택자 통계~ 줄바꿈 br p

mcdn 2021. 7. 15. 16:09
반응형

+ more reference 

http://statmath.wu-wien.ac.at/courses/data-analysis/itdtHTML/node28.html

 

3.3 Common HTML elements

  Known as an anchor. An inline element that can go inside any other element. It can contain any other inline element (except another anchor). Important attributes are: href, which means that the anchor is a hypertext link and the value of the attribute s

statmath.wu-wien.ac.at

https://www.geeksforgeeks.org/most-commonly-used-tags-in-html/

 

Most commonly used tags in HTML - GeeksforGeeks

A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

www.geeksforgeeks.org

 

<html>
 <head>
 <title>
 <link>
 <body>
 <p>
 <img>
 <a>
 <h1> ... <h6>
 <table>, <tr>, and <td>
 <table>
 </table>
 <hr>
 <br>
 <ul>, <ol>, and <li>
 <pre>

 

자주 쓰이는 애들이다. 

 

강의에서 배운 거 몇 개 

https://opentutorials.org/course/3084/18392

<strong> </strong>

하이라이트 

 

<u></u>

언더라인 

 

 

 

 

https://opentutorials.org/course/3084/18400

<h1> ~ <h6> 

heading 제목 태그 

 

 

 

 

 

https://opentutorials.org/course/3084/18403

 

줄바꿈 - 생활코딩

--- 이번 시간에는 인기있는 태그 두 가지를 살펴볼 거에요. 이 두 태그는 서로 경쟁관계에 있는데요. 어떤 경쟁관계에 있는가를 통해서 정보로서 웹이라는 관점에 대해서 생각해 봅시다. 또 CSS

opentutorials.org

<br>

줄 바꿈

특이한건 닫는 태그가 없다 img, input, br, hr, meta 등이 닫지 않는 태그 예다 

 

 

<p>

paragraph 단락 태그 

br만큼 줄바꿈 디자인을 맞추기 어렵. 그래서 css를 이용해서 디자인을 조정한다 ex) style="margin-top:45px"

 

 

반응형