Html기초

김상완·2020년 9월 21일
0

마음가짐
자신의문제를 코딩으로해결하려는 엔지니어로 생각할것

웹페이지를만드는게 html

HTML의장점

  • 간단하다
  • 중요하다
<strong>글자를 두껍게하는 태그</strong>
<u>밑줄긋는 태그</u>

기본적으로 알고있어야할 태그

줄발꿈태그


  • 태그는 시각적인 의미를 가지고있기때문에 닫기태그가없다.
  • 는 단락을 의미하기때문에 닫기도 존재함

    정해저있는 공백만큼만 띄어짐

HTML이 중요한이유

의미있게 코드를써야 검색이 잘된다
접근성. 

속성

Attribute

  • 태그안에 위치는 중요하지않음
    태그가 태그만으로 정의가되지않을때 속성으로 좀더 세부적으로 정의함

    부모와 자식관계

  • 밑에는 반드시
<!doctype html>
<html>
<head>
  <title>WEB1 - html</title>
  <meta charset="utf-8">
</head>
<body>
  <ol>
    <li>HTML</li>
    <li>CSS</li>
    <li>JavaScript</li>
  </ol>
  <h1>HTML</h1>
  <p><a href="https://www.w3.org/TR/html5/" target="_blank" title="html5 specification">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications.Web browsers receive HTML documents from a web server or from local storage and render them into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.
  <img src="coding.jpg" width="100%">
  </p><p style="margin-top:45px;">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. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using angle brackets.
  </p>
</body>
</html>

인터넷 안에 웹이 있음

인터넷과 웹은 동반속도로 엄청난속도로 발전하게된다.

인터넷의 동작원리

  • 최소 두대에 컴퓨터가 필요함
  • 웹 브라우저
  • 웹서버가 인터넷으로 연결되있음

0개의 댓글