본문 바로가기

webOS

# HTML

 

개발하면서 HTML 공부한 내용을 정리해 올립니다. (계속 추가할 예정)


 

HTML

페이지 표시를 위해 개발된 마크업 언어

bold <strong> / </strong>
underline <u> / </u>
header <h1> ~ <h6> / </h1> ~ </h6>
break <br>
paragraph <p> / </p>
image <img src=”image_source_or_name” width=”width” height=”height”>
video <video width=WIDTH height=HEIGHT CONTROLS> / <source> / </video>
canvas <canvas width=WIDTH height=HEIGHT> / </canvas>
list <li> / </li>
list with order Unordered list <ul> / </ul>
Ordered list <ol> / </ol>
title <title> / </title>
meatadata <meta charsest=”UTF-8”>
head <head> / </head>
body <body> / </body>
header <header> / </header>
doctype < !DOCTYPE html>
html <html> / </html>
hyperlink <a href="url" target="_self" title="title"> / CONTENT</a>
division <div> / </div>
inline division <span> / </span>
link <link rel=RELATIONSHIP href=LINKED_DOC>
small <small> / </small>
input <input type=TYPE value=VALUE>
multi input <textarea> / </textarea>
form <form> / </form>
comments <!—CONTENT à
CSS <style> / </style>
Class class=”CLASS1 CLASS2” – CSS .접근
Id Id=”ID” – CSS #접근
JavaScript <script> / </script>

* id > class > tag

 

https://www.w3schools.com/tags/default.asp

https://opentutorials.org/course/3084


 

'webOS' 카테고리의 다른 글

# JavaScript  (0) 2022.08.23
# CSS  (0) 2022.08.23
webOS(4): target device 설정과 sample web app 제작  (0) 2022.07.31
webOS(3): web application과 CLI 설치  (0) 2022.07.31
webOS(2): webOS 소개(2)와 OS 설치  (0) 2022.06.30