개발 노트

Html P태그를 배워보자 본문

프로그래밍/Html

Html P태그를 배워보자

알 수 없는 사용자 2022. 5. 30. 15:29

P태그는 단락 난잡한 문장에 p 태그를  입력하면  보기좋게 문단을 정리해준다

P태그를 사용했을때의 모습 

줄바꿈 태그 BR태그

새로운 행에서부터 입력이 시작되도록 한다  A forced line-break 강제 줄바꿈의 줄인말이다 

br태그를 사용했을때의 모습

나중에 CSS 배워서 P태그로 간격을 조절하는게 좋다고한다

<html>
  <body>
    HyperText Markup Language or HTML is the standard markup language for
    documents designed to be displayed in a web browser. It can be assisted by
    technologies such as Cascading Style Sheets (CSS) and scripting languages
    such as JavaScript. Web browsers receive HTML documents from a web server or
    from local storage and render the documents into multimedia web pages.<br /><br /><br />

    HTML describes the structure of a web page semantically and originally
    included cues for the appearance of the document. HTML elements are the
    building blocks of HTML pages. With HTML constructs, images and other
    objects such as interactive forms may be embedded into the rendered page.<br /><br /><br />
    HTML provides a means to create structured documents by denoting structural
    semantics for text such as headings, paragraphs, lists, links, quotes and
    other items. HTML
  </body>
</html>

p.html
0.00MB

'프로그래밍 > Html' 카테고리의 다른 글

html form 태그 연습 3  (0) 2022.05.30
Html form 코드 연습 1  (0) 2022.05.30
Html 이미지 태그를 연습해보자  (0) 2022.05.30
Html 각자 링크 걸어주기  (0) 2022.05.30
Html 리스트태그 연습 2  (0) 2022.05.30