출처는 MDN과 W3schools을 참고했다.
head의 내용이 하는 일은 페이지에 대한 metadata를 포함하는 것입니다.
은 (문서의 컨텐츠가 아니라) HTML문서 전체의 타이틀 표현하기 위한 메타데이터입니다.<meta charset="utf-8">
utf-8 은 전세계적인 character 집합으로 많은 언어들을 문자들을 포함합니다. 이는 웹 페이지에서 어떤 문자라도 취급할 수 있다는 것을 의미합니다.
많은 요소가 name 과 content 속성을 가집니다:
<meta name="author" content="Chris Mills">
<meta name="description" content="The MDN Learning Area aims to provide
complete beginners to the Web with all they need to know to get
started with developing web sites and applications.">
페이지 관련키워드를 포함시키면 검색엔진에서 이 페이지가 표시될 가능성을 높인다.
<meta property="og:image" content="https://developer.mozilla.org/static/img/opengraph-logo.png">
크롤링 해올때 og 부분을 말한다
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<p>단락입니다</p>
<hr> 줄 긋기 태그입니다
<br> 줄바꾸기 태그입니다
<b>- 굵은 텍스트 b</b>
<strong>- 중요한 텍스트 strong</strong>
<i>- 기울임꼴 텍스트 i </i>
<em>- 강조된 텍스트 em </em>
<mark>- 표시된 텍스트 mark </mark>
<small>- 더 작은 텍스트 small</small>
<del>- 삭제된 텍스트 edl </del>
<ins>- 삽입된 텍스트 ins </ins>
<sup>- 위 첨자 텍스트 sup</sup>
<p>This is <sub>아래 첨자 sub</sub> text.</p>
<a href="https://www.w3schools.com">하이퍼링크입니다</a>
<style>
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>
- <h2 id="C4">Chapter 4</h2>
책갈피 원하는 글에 id 주고 a 태그에 href="#C4" #id 붙여주기
blockquote 이런형태로 살짝 들여쓰기 인용 해온거 쓰는 칸
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
abbr 안에 들어간 약어를 hover 할때 창을 띄워 단어 전체를 보여줍니다.
address 태그는 안에 내용을 살짝 기울임꼴로 렌더링 됩니다.
cite 태그도 작품의 제목을 정의하는데 기울임꼴로 렌더링 됩니다
bdo 태그는 글자 순서를 뒤집어 줍니다.
<bdo dir="rtl">This text will be written from right to left</bdo>
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
<img src="workplace.jpg" alt="Workplace" usemap="#workmap">
<map name="workmap">
<area shape="rect" coords="34,44,270,350" alt="Computer" href="computer.htm">
<area shape="rect" coords="290,172,333,250" alt="Phone" href="phone.htm">
<area shape="circle" coords="337,300,44" alt="Coffee" href="coffee.htm">
</map>
HTML 색상
Lorem ipsum...
색상 값
<table>
<tr>
<td>Emil</td>
<td>Tobias</td>
<td>Linus</td>
</tr>
</table>
table, th, td {
border: 1px solid black;
border-collapse: collapse; 이중테두리 발생 막기
}
border-style : 위 내용
<table style="width:100%">
<tr>
<th style="width:70%">Firstname</th>
가장 큰 table 크기 정하고 각 th에 크기지정, 높이 지정도 됨
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
요런식으로 쓰인다