Htmlベース

8510 ワード

마음가짐自分の問題をコードで解決しようとするエンジニアと見なす
Webページを作成するのは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>

    インターネットはWebを含む


    インターネットとネットワークは驚くべきスピードで同期して発展している.

    インターネットの動作原理

  • 少なくとも2台のコンピュータ
  • が必要である.
  • Webブラウザ
  • Webサーバは、インターネット
  • に接続する.