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を含む
インターネットとネットワークは驚くべきスピードで同期して発展している.
インターネットの動作原理
Reference
この問題について(Htmlベース), 我々は、より多くの情報をここで見つけました https://velog.io/@ksw5229/Html기초テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol