[HTML][한]HTML Arsenal

Table of Contents

시작(To Commence)

HTML 마크다운에 대해 파악하고자 HTML 무기고(Arsenal)를 작성해봅니다. 마크다운 문법은 GFM 기준으로 작성했습니다.

Let us see simple grammer when writing HTML Markdown.
All markdown grammer is based on GFM. ***

줄바꿈(Line Change)

마크다운은 스페이스 키를 친다고 해서 줄바꿈이 되지 않습니다.
줄을 바꾸려면, 라인 끝에서 스페이스 키를 두번 쳐야합니다.

Markdown do not recognize line change by space.
To change line, you should tap spaces key twice in the end of the line.

Sentence 1 <tap space key twice>  
Sentence 2

강조(Emphasize)

single asterisks

*single asterisks*

double asterisks

**double asterisks**  

cancel line

~~cancel line~~

single underscore

_single underscore_

double underscores

__double underscores__

박스 만들기(Making Box for Text)

<table><tr><td>
<pre>
Put Content Here, Blah Blah
</pre>
</td></tr></table>
"행복이란 인간이 품고 있는 커다란 미망이다. 
신기루이다. 하지만 사람들은 그것을 깨닫지 못한다."
                     > 아르투르 쇼펜하우어 

텍스트 헤더(Text Header)

This is a H1

This is a H2

This is a H3

This is a H4

This is a H5
This is a H6
# This is a H1
## This is a H2
### This is a H3
#### This is a H4
##### This is a H5
##### This is a H6

인용

This is a first blockqute.

This is a second blockqute.

This is a third blockqute.

This is a first blockqute.
This is a second blockqute.
This is a third blockqute. 

분류(Classification, Indentation)

  1. FW
  2. MF
  3. DF
  4. GK
1. FW
2. MF
3. DF
4. GK
  • PL
    • 2019-2020 Champion
      • Manchester City FC
* PL
  * 2019-2020 Champion
    * Manchester City FC

파이썬 코드(Python Code)

s = "Whatever is Reasonable is True,\
and Whatever is True is Reasonable."
print s
```python
s = "Whatever is Reasonable is True,\
and Whatever is True is Reasonable."
print s```

경계선(Boarder Line)

***

링크 표시 주소 임베디드(Links, address embeded)

네이버

[네이버](https://naver.com)

링크 표시 주소 표시(Links, address revealed)

https://naver.com

<https://naver.com>

이미지 삽입(Add Images)

![](https://media1.tenor.com/images/c4251590126a92f1d4adaa5d590f4d04/tenor.gif?itemid=16405522)

이미지 삽입 및 사이즈 편집(Add Images & Change Size of them)

width, height 파라미터를 활용하여 사이즈를 지정해주면 됩니다.

Photo of 3 cats

<img src="https://thumbs.gfycat.com/ThankfulFearlessHochstettersfrog.webp" width="100" height="100" alt="Photo of 3 cats">

표 삽입(Add Tables)

가운데 정렬(Add Tables, Centered)

Food Price EA
Ramyun 800 won 10
Snack 900 won 20
| Food | Price | EA |
|:----|:----:|:----:|
| Ramyun | 800 won   | 10 |
| Snack | 900 won   | 20 |

좌 정렬(Add Tables, Lefted)

Food Price EA
Ramyun 800 won 10
Snack 900 won 20
| Food | Price | EA |
|:----:|:----|:----|
| Ramyun | 800 won   | 10 |
| Snack | 900 won   | 20 |

주석 처리

<!--

여러줄 주석

-->
<! 한줄 주석>

취소선(Cancel Line)

저는 취소선이 적용 되었습니다.


저는 <del>취소선이 적용</del> 되었습니다.<br>

밑줄(UnderLine)

저는 밑줄이 적용 되었습니다.


저는 <ins>밑줄이 적용</ins> 되었습니다.<br>

색상 부여(Coloring)

Apple is Green and Melon is Red

Apple is <span style = "color:green"> Green </span> and
Melon is <span style = "color:red"> Red </span>

글자 정렬(text aligning)

왼쪽 정렬

오른쪽 정렬

가운데 정렬

<p style="text-align:left;">왼쪽 정렬</p>
<p style="text-align:right;">오른쪽 정렬</p>
<p style="text-align:center;">가운데 정렬</p>

폰트 사이즈(fonts size)

폰트 크기 1로 설정 폰트 크기 2로 설정
<font size="1">폰트 크기 1로 설정</font>
<font size="2">폰트 크기 2로 설정</font>






— 계속 업데이트 예정 —

2020

[Robot][EN]Hivemapper

2 minute read

Hivemapper,a decentralized mapping network that enables monitoring and autonomous navigation without the need for expensive sensors, aircraft, or satellites.

[CV][GAN][EN]Cycle GAN

8 minute read

Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks

Back to top ↑