create account

[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자. by anpigon

View this thread on: hive.blogpeakd.comecency.com
· @anpigon · (edited)
$2.29
[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자.
안녕하세요. @anpigon입니다.

스팀잇은 허용한 HTML 태그와 속성만 입력할 수 있도록 되어있습니다. 그래서 스팀잇 소스를 분석하여 사용 가능한 HTML 태그와 속성을 파악하여 정리하였습니다. 

___

스팀잇에서 사용가능한 HTML 태그는 아래와 같다. 아래에 포함되지 않은 HTML 태그는 사용할 수 없다.

```
<div>, <iframe>, <a>, <p>, <br>, <img>, <hr>
<ul>, <li>, <ol>
<h1>, <h2>, <h3>, <h4>, <h5>, <h6>
<blockquote>, <pre>, <code>, <center>
<table>, <thead>, <tbody>, <tr>, <th>, <td>
<strike>, <sup>, <sub>, <em>, <strong>, <del>, <b>, <i>, <q>
```
<br>

HTML태그에 허용되는 속성(Attribute)은 다음과 같다. 속성을 사용할 수 있는  태그만 표시하였다.

| 태그 | 속성 | 설명 |
|-|-|-|
| `<iframe>` | `src` | `src`에 사용 가능한 도메인<br/><sub>ㆍ`https://w.soundcloud.com/player/?url=…`<br/>ㆍ`https://player.vimeo.com/video/28530912…`<br/>ㆍ`https://www.youtube.com/embed/yUjlBfmkO6…`</sub> |
| `<div>` | `class` |`class`에 사용 가능한 스타일 <br /><sub>`pull-right`, `pull-left`, `text-justify`, `text-rtl`, `text-center`, `text-right`, `videoWrapper`, `phishy`</sub><br /><sub>※ div.class 스타일에 대해서는 아래에서 다시 설명하겠다.</sub>|
| `<td>` | `style` |`style`에 사용 가능한 스타일 <br /> <sub>`text-align:right`</sub>|
| `<img>` | `src`, `alt` ||
| `<a>` | `href` |`href`에 사용 가능한 스킴(Scheme)<br /><sub>`http://`, `https://`, `steem://`</sub>|


<br>

___

# 각 태그에 대한 설명

각 HTML 태그에 대한 간략한 설명과 예제를 살펴보자.


## `<strike>`, `<del>` 태그

`<strike>`는 취소선, `<del>`은 삭제선을 의미한다. 그러나 HTML 렌더링 결과는 동일하다. 마크다운은 `~~`를 사용한다.

```
<strike>취소선</strike>
<del>삭제선</del>
~~마크다운 표현식~~
```

![](https://imgur.com/Wpq7WMK.png)

___

## `<sup>`, `<sub>` 태그

`<sup>`는 윗첨자(super subscript), `<sub>`은 아랫첨자(subscript)를 의미한다. 스팀잇에서 작은 글자를 표현할때 많이 사용한다. 

```
윗첨자<sup>윗첨자</sup>
아랫첨자<sub>아랫첨자</sub>
```

![](https://imgur.com/Bj7hvIu.png)

___

## `<i>`, `<em>` 태그

`<i>`는 Italic를 뜻하며 *이탤릭체 또는 기울임체*라고 한다. `<em>`은 Emphasize를 뜻한다. 그러나 HTML 렌더링 결과는 동일하다. 마크다운은 `*` 또는 `_`를 사용한다.

```
<i>Italic</i>
<em>Emphasize</em>
*마크다운 표현식*
_마크다운 표현식_
```

![](https://imgur.com/SV2Ss3L.png)

___

## `<strong>`, `<b>` 태그

`<strong>`, `<b>` 는 글자를 강조할때 사용한다. 마크다운은 `**` 또는, `__`를 사용한다.

```
<strong>Strong</strong>
<b>Bold</b>
**마크다운 표현식**
__마크다운 표현식__
```

![](https://imgur.com/2G9CKcY.png)

___

## `<q>`, `<blockquote>` 태그

`<q>`는 짧은 인용문, `<blockquote>`는 긴 인용문에 사용한다. 마크다운은 긴 인용문에 `>`를 사용한다.

```
<q>짧은 인용문</q>
<blockquote>
추구할 수 있는 용기가 있다면 우리의 모든 꿈은 이뤄질 수 있다. <br>
– 월트 디즈니
</blockquote>

> 마크다운 표현식에서는 인용문을 이렇게 사용한다.
\- 안피곤
```

![](https://imgur.com/j20z2mj.png)
___

## `<iframe>` 태그

`<iframe>`은 동영상을 삽입할 때 사용한다. 하지만, 현재는 **[Soundcloud](https://soundcloud.com)**, **[vimeo](https://vimeo.com/ko/)**, **[Youtube](https://www.youtube.com)**에 업로드한 동영상만 사용 가능하다. 아래와 같은 embed 코드는 동영상 제공 사이트에서 가져올 수 있다.

```
<iframe src="https://w.soundcloud.com/player/?url=…"></iframe>
<iframe src="https://player.vimeo.com/video/28530912…"></iframe>
<iframe src="https://www.youtube.com/embed/egGkViMDVF…"></iframe>
```

>  참고로 **Youtube**와 **vimeo**는 URL만 입력하면 `<iframe>`으로 자동 변환된다. 

___

## `<img>` 태그

이미지를 삽입할 때 사용한다. 마크다운으로 표현하면 `![대체텍스트](이미지주소)`이다.

```
<img src="https://imgur.com/a2cMI4Q.png" alt="대체텍스트">
```
>  이미지도 URL만 입력하면 `<img>`로 자동 변환된다. 단, `"https://imgur.com/a2cMI4Q.png"` 와 같이 URL이 `jpg, jpeg, gif, png, svg, ico, tif, tiff` 로 끝나는 경우에만 자동 변환된다.

___

# `<div>` 태그의 `class` 스타일


`<div>`에 사용가능한  스타일에 대해서 차례대로 살펴보자.



## pull-right

div를 오른쪽으로 float한다.

```
<div class='pull-right'>
오른쪽에 출력
</div>
```
![](https://imgur.com/M6vNxZ3.png)

<hr>

## pull-left


div를 왼쪽으로 float한다.

```
<div class='pull-left'>
왼쪽에 출력
</div>
```
![](https://imgur.com/NBaTluy.png)

<hr>

## text-justify

텍스트를 양쪽 정렬한다.

```
<div class='text-justify'>
텍스트 양쪽 정렬
</div>
```
![](https://imgur.com/a57ILkB.png)

<hr>

## text-center


텍스트를 가운데 정렬한다. `<center>`와 동일하다.

```
<div class='text-center'>
텍스트 가운데 정렬
</div>
```


![](https://imgur.com/w41GGZB.png)

<hr>

## text-right


텍스트를 오른쪽 정렬한다.

```
<div class='text-right'>
텍스트 오른쪽 정렬
</div>
```

![](https://imgur.com/XoutMMq.png)

>  <sup>결과만 봤을때는 text-right와 pull-right와 동일하다고 생각 할 수 있다. 하지만, 두 스타일의 용도와 정렬 방식은 다르다. text-right는 `<div>` 내부 항목들을 오른쪽으로 정렬한다. 그리고  pull-right는 `<div>` 영역을 오른쪽에 출력한다.</sup>

<hr>

## text-rtl

글자 방향을 오른쪽에서 왼쪽으로 표시한다. 특수문자가 왼쪽으로 표시되는 것 말고는 text-right와 차이가 거의 없어 보인다.

```
<div class='text-rtl'>
글자 방향을 오른쪽에서 왼쪽으로...
</div>
```
![](https://imgur.com/VocbxDx.png)

<hr>

## phishy

phishy는 글자색을 빨간색으로 표시해준다.

```
<div class='phishy'>
  빨간색
</div>
```

![](https://imgur.com/lNxJBas.png)

#  응용해보기

위의 스타일을 응용하면 아래와 같은 표현도 가능하다. 이렇게 까지 사용할 일은 없다고 생각되지만, 재미를 위해서 만들어 보았다.

```html
<div class='pull-left'>
  문장에서 가운데 글자를
</div>
<div class='pull-left'>
  <div class='phishy'>
    빨간색
  </div>
</div>
<div class='pull-left'>
  으로 강조하고 싶다.
</div>
```

![](https://imgur.com/eb2QVK7.png)


또는,

```html
<div class='pull-left'>
  <sup><table>
  <tr><th>1 단계</th></tr>
  <tr><td>눈을 감는다</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>2 단계</th></tr>
  <tr><td>잡념을 없앤다</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>3단계</th></tr>
  <tr><td>잠을 잔다</td></tr>
  </table></sup>
</div>
<div class='pull-right'>
  <sup><table>
  <tr><th>마지막 단계</th></tr>
  <tr><td>꿈을 꾼다</td></tr>
  </table></sup>
</div>
```

![](https://imgur.com/keDs0AE.png)


여기까지 읽어주셔서 감사합니다.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authoranpigon
permlinkhtml
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr","steemit","busy"],"links":["/@anpigon","https://soundcloud.com","https://vimeo.com/ko/","https://www.youtube.com"],"image":["https://imgur.com/Wpq7WMK.png","https://imgur.com/Bj7hvIu.png","https://imgur.com/SV2Ss3L.png","https://imgur.com/2G9CKcY.png","https://imgur.com/j20z2mj.png","https://imgur.com/M6vNxZ3.png","https://imgur.com/NBaTluy.png","https://imgur.com/a57ILkB.png","https://imgur.com/w41GGZB.png","https://imgur.com/XoutMMq.png","https://imgur.com/VocbxDx.png","https://imgur.com/lNxJBas.png","https://imgur.com/eb2QVK7.png","https://imgur.com/keDs0AE.png"]}
created2018-08-22 15:08:45
last_update2018-12-29 15:06:06
depth0
children47
last_payout2018-08-29 15:08:45
cashout_time1969-12-31 23:59:59
total_payout_value1.796 HBD
curator_payout_value0.495 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,209
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,027,439
net_rshares1,614,363,724,028
author_curate_reward""
vote details (52)
@anabolic ·
대박 자료네요! 고맙습니다
properties (22)
authoranabolic
permlinkre-anpigon-html-20180823t024905157z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 02:49:06
last_update2018-08-23 02:49:06
depth1
children1
last_payout2018-08-30 02:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation1,063,474,838,329
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,077,089
net_rshares0
@anpigon ·
아나볼릭님 감사합니다.^^
properties (22)
authoranpigon
permlinkre-anabolic-re-anpigon-html-20180823t032006926z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 03:20:06
last_update2018-08-23 03:20:06
depth2
children0
last_payout2018-08-30 03:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,079,175
net_rshares0
@ayogom ·
<div class='pull-left'>
  <div class='phishy'>
  만약,
  </div>
</div>
<div class='pull-left'>
    @ayogom
</div>
<div class='pull-left'>
  <div class='phishy'>
  친해지고 싶다면?
  </div>
</div>
<br>
<br>
<div class='pull-left'>
  <sup><table>
  <tr><th>1 단계</th></tr>
  <tr><td>댓글을 단다</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>2 단계</th></tr>
  <tr><td>보팅을 한다</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>3단계</th></tr>
  <tr><td>팔로우를 한다</td></tr>
  </table></sup>
</div>
<div class='pull-right'>
  <sup><table>
  <tr><th>마지막 단계</th></tr>
  <tr><td>친해진다!</td></tr>
  </table></sup>
</div>
properties (22)
authorayogom
permlinkre-anpigon-html-20180824t025754622z
categorykr
json_metadata{"tags":["kr"],"users":["ayogom"],"app":"steemit/0.1"}
created2018-08-24 02:57:57
last_update2018-08-24 02:57:57
depth1
children1
last_payout2018-08-31 02:57:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length734
author_reputation74,209,287,963,096
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,183,935
net_rshares0
@anpigon ·
대...댓글달고 보...보팅하고 파...팔로우 하겠습니다.
properties (22)
authoranpigon
permlinkre-ayogom-re-anpigon-html-20180824t031523147z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-24 03:15:24
last_update2018-08-24 03:15:24
depth2
children0
last_payout2018-08-31 03:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,185,243
net_rshares0
@bbooaae · (edited)
감사합니당 잘쓰겠습니당 ~~^^리스팀
해갈께영
properties (22)
authorbbooaae
permlinkre-anpigon-2018824t214620575z
categorykr
json_metadata{"tags":["kr"],"app":"busy/2.5.6","format":"markdown","community":"busy","users":[],"links":[],"image":[]}
created2018-08-24 12:46:21
last_update2018-08-24 12:47:12
depth1
children1
last_payout2018-08-31 12:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation67,197,492,770,252
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,224,231
net_rshares0
@anpigon ·
뽀돌님 리스팀 감사합니다~^^
properties (22)
authoranpigon
permlinkre-bbooaae-re-anpigon-2018824t214620575z-20180824t125539943z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-24 12:55:42
last_update2018-08-24 12:55:42
depth2
children0
last_payout2018-08-31 12:55:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,225,004
net_rshares0
@bluengel ·
꺄아아아아~앙~!

정리해주셔 완전 감사합니당~ *^^*

![bluengel_i_g.jpg](https://cdn.steemitimages.com/DQmNWJh9YcCMvPKseXTkRE7z6ocd3DguE2JKku8FtBMtWvo/bluengel_i_g.jpg) Created by : mipha thanks :) | 항상 행복한 하루 보내셔용*^^* 감사합니다 *^^* <br>**'스파'**시바(Спасибо스빠씨-바)~!
-|-
properties (22)
authorbluengel
permlinkre-anpigon-html-20180823t022433297z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":["https://cdn.steemitimages.com/DQmNWJh9YcCMvPKseXTkRE7z6ocd3DguE2JKku8FtBMtWvo/bluengel_i_g.jpg"]}
created2018-08-23 02:24:48
last_update2018-08-23 02:24:48
depth1
children1
last_payout2018-08-30 02:24:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation129,269,571,273,945
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,075,369
net_rshares0
@anpigon ·
블루엔젤님 감사합니다~~~🤗
properties (22)
authoranpigon
permlinkre-bluengel-re-anpigon-html-20180823t023802797z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-23 02:38:06
last_update2018-08-23 02:38:06
depth2
children0
last_payout2018-08-30 02:38:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,076,320
net_rshares0
@codingman ·
오호! 유익한 정보네요! ^^
properties (22)
authorcodingman
permlinkre-anpigon-html-20180823t012303058z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 01:23:06
last_update2018-08-23 01:23:06
depth1
children1
last_payout2018-08-30 01:23:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation23,188,231,710,844
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,070,922
net_rshares0
@anpigon ·
코딩맨님 감사합니다.^^
properties (22)
authoranpigon
permlinkre-codingman-re-anpigon-html-20180823t012908421z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-23 01:29:09
last_update2018-08-23 01:29:09
depth2
children0
last_payout2018-08-30 01:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,071,379
net_rshares0
@could0222 ·
깔끔한 정리 ㅎㅎ 감사합니다!
properties (22)
authorcould0222
permlinkre-anpigon-html-20180824t010753784z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-24 01:07:57
last_update2018-08-24 01:07:57
depth1
children1
last_payout2018-08-31 01:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation119,226,968,027
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,175,729
net_rshares0
@anpigon ·
깔끔하게 정리했습니다.😁
properties (22)
authoranpigon
permlinkre-could0222-re-anpigon-html-20180824t031438356z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-24 03:14:42
last_update2018-08-24 03:14:42
depth2
children0
last_payout2018-08-31 03:14:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,185,188
net_rshares0
@cowboybebop · (edited)
<p>
<p>
<div class='pull-left'>
  <sup><table>
  <tr><th>1 단계</th></tr>
  <tr><td>이거 아는건데...</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>2 단계</th></tr>
  <tr><td>첨보는 것도 있네...</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>3단계</th></tr>
  <tr><td>우와 이런 것도 되나?</td></tr>
  </table></sup>
</div>
<div class='pull-left'>&#10132;</div>
<div class='pull-left'>
  <sup><table>
  <tr><th>마지막 단계</th></tr>
  <tr><td>기립박수... 짝짝짝</td></tr>
  </table></sup>
</div>
👍  
properties (23)
authorcowboybebop
permlinkre-anpigon-html-20180822t152828557z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-22 15:28:27
last_update2018-08-22 15:29:21
depth1
children1
last_payout2018-08-29 15:28:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length603
author_reputation3,804,140,160,604
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,029,229
net_rshares0
author_curate_reward""
vote details (1)
@anpigon ·
활용을 잘하시네요~😁
properties (22)
authoranpigon
permlinkre-cowboybebop-re-anpigon-html-20180822t221555484z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-22 22:15:57
last_update2018-08-22 22:15:57
depth2
children0
last_payout2018-08-29 22:15:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,058,695
net_rshares0
@forhappywomen ·
![](https://cdn.steemitimages.com/DQmU9NtTVHvk8FcuC1aCfTxJ6jBspE9P5g5ZhcTRteeYHAz/image.png)

요건 놀랐습니다!! ㅎㅎㅎ 대박이네요
properties (22)
authorforhappywomen
permlinkre-anpigon-html-20180827t083619347z
categorykr
json_metadata{"tags":["kr"],"image":["https://cdn.steemitimages.com/DQmU9NtTVHvk8FcuC1aCfTxJ6jBspE9P5g5ZhcTRteeYHAz/image.png"],"app":"steemit/0.1"}
created2018-08-27 08:36:18
last_update2018-08-27 08:36:18
depth1
children1
last_payout2018-09-03 08:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation46,993,075,275,149
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id69,482,218
net_rshares0
@anpigon ·
대박~ 감사합니다.😃
properties (22)
authoranpigon
permlinkre-forhappywomen-re-anpigon-html-20180827t103912121z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-27 10:39:12
last_update2018-08-27 10:39:12
depth2
children0
last_payout2018-09-03 10:39:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,490,240
net_rshares0
@glory7 ·
좋은 팁들 감사합니다!
👍  
properties (23)
authorglory7
permlinkre-anpigon-html-20180823t010448644z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 01:04:51
last_update2018-08-23 01:04:51
depth1
children1
last_payout2018-08-30 01:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation420,998,392,418,509
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,069,519
net_rshares0
author_curate_reward""
vote details (1)
@anpigon ·
제 글에 관심가져주셔서 감사합니다.^^
properties (22)
authoranpigon
permlinkre-glory7-re-anpigon-html-20180823t011724515z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 01:17:24
last_update2018-08-23 01:17:24
depth2
children0
last_payout2018-08-30 01:17:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,070,497
net_rshares0
@imrahelk ·
영상 어찌 넣을지 몰랐는데 이런방법이! 감사합니다:)
properties (22)
authorimrahelk
permlinkre-anpigon-html-20180822t233708090z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-22 23:37:09
last_update2018-08-22 23:37:09
depth1
children1
last_payout2018-08-29 23:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation10,432,088,396,439
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,063,637
net_rshares0
@anpigon ·
다음번에는 영상 넣어보세요.
팝송 이야기에 영상에서 노래가 나온다면 더 좋겠어요.^^
properties (22)
authoranpigon
permlinkre-imrahelk-re-anpigon-html-20180823t000409287z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 00:04:09
last_update2018-08-23 00:04:09
depth2
children0
last_payout2018-08-30 00:04:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,065,311
net_rshares0
@jisoooh0202 ·
파란 하늘 보고 힐링하시는 말에 대댓글 달라다가 블로그 방문했더니 유용한 정보가 있어서 여기 댓글 답니다. ㅋㅋㅋ
정보 감사합니다!!! :)

근데 저 두줄 포스팅할때 디브 클래스 안에서는 다른 html 태그 안먹던데... 예를 들어서 글씨 굵게하거나 링크 거는 것들... []() 요렇게 링크 거는거요.
디브클래스 밖에서 할땐 되는데 그 안에서는 왜 안되는거죠?
properties (22)
authorjisoooh0202
permlinkre-anpigon-html-20180823t053314830z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 05:33:18
last_update2018-08-23 05:33:18
depth1
children2
last_payout2018-08-30 05:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length203
author_reputation4,755,820,563,511
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,088,152
net_rshares0
@anpigon ·
요렇게 공백을 잘 넣어서 사용해보세요~

```
<div class='text-right'>

<b><i>이탤릭 볼드</i></b>
***이탤릭 볼드***
<a href="">링크</a>
[링크](링크)

</div>
```

<div class='pull-left'>

<b><i>이탤릭 볼드</i></b>
***이탤릭 볼드***
<a href="">링크</a>
[링크](링크)

</div>
<div class='text-right'>

<b><i>이탤릭 볼드</i></b>
***이탤릭 볼드***
<a href="">링크</a>
[링크](링크)

</div>
properties (22)
authoranpigon
permlinkre-jisoooh0202-re-anpigon-html-20180823t100657428z
categorykr
json_metadata{"tags":["kr"],"links":["링크"],"app":"steemit/0.1"}
created2018-08-23 10:06:57
last_update2018-08-23 10:06:57
depth2
children1
last_payout2018-08-30 10:06:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length315
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,108,350
net_rshares0
@jisoooh0202 ·
아아아아아아아아아아아아아아아아아아아아아아
그래서 그랬구나.....................ㅜㅜ
이제 두줄 포스팅 안하긴 하지만... 
정보 감사합니다!!! :)
properties (22)
authorjisoooh0202
permlinkre-anpigon-re-jisoooh0202-re-anpigon-html-20180824t045507866z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-24 04:55:09
last_update2018-08-24 04:55:09
depth3
children0
last_payout2018-08-31 04:55:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation4,755,820,563,511
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,191,861
net_rshares0
@jjy ·
유익한 정보 감사합니다.
도움이 될 거 같아요.
리스팀합니다.
properties (22)
authorjjy
permlinkre-anpigon-html-20180823t040021238z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 04:00:21
last_update2018-08-23 04:00:21
depth1
children1
last_payout2018-08-30 04:00:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation251,505,780,656,428
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,081,840
net_rshares0
@anpigon ·
리스팀 감사합니다.^^
properties (22)
authoranpigon
permlinkre-jjy-re-anpigon-html-20180823t045159177z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-23 04:52:00
last_update2018-08-23 04:52:00
depth2
children0
last_payout2018-08-30 04:52:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,085,196
net_rshares0
@kyju ·
공부를 많이 해야겠지요.
properties (22)
authorkyju
permlinkre-anpigon-html-20181008t101751005z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-10-08 10:17:51
last_update2018-10-08 10:17:51
depth1
children0
last_payout2018-10-15 10:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation75,271,066,691,598
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,862,499
net_rshares0
@laylador ·
유익한 정보 감사합니다.
properties (22)
authorlaylador
permlinkre-anpigon-html-20180824t173107892z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-24 17:31:06
last_update2018-08-24 17:31:06
depth1
children0
last_payout2018-08-31 17:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation96,466,401,933,289
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,248,717
net_rshares0
@mimistar ·
우왕 정리 잘 되어있네요. 리스팀해요^^
properties (22)
authormimistar
permlinkre-anpigon-html-20180823t011716893z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 01:17:15
last_update2018-08-23 01:17:15
depth1
children1
last_payout2018-08-30 01:17:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation48,272,689,745,508
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,070,489
net_rshares0
@anpigon ·
미미별님 감사합니다.^^
properties (22)
authoranpigon
permlinkre-mimistar-re-anpigon-html-20180823t012844410z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-23 01:28:45
last_update2018-08-23 01:28:45
depth2
children0
last_payout2018-08-30 01:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,071,341
net_rshares0
@mongssb ·
멋지심
properties (22)
authormongssb
permlinkre-anpigon-html-20180823t021815068z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 02:18:18
last_update2018-08-23 02:18:18
depth1
children1
last_payout2018-08-30 02:18:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation1,670,876,247,788
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,074,901
net_rshares0
@anpigon ·
칭찬 감사합니다.😁
properties (22)
authoranpigon
permlinkre-mongssb-re-anpigon-html-20180823t024029806z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-23 02:40:30
last_update2018-08-23 02:40:30
depth2
children0
last_payout2018-08-30 02:40:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,076,480
net_rshares0
@mongssb · (edited)
<div class='pull-left'>
  나는
</div>
<div class='pull-left'>
  <div class='phishy'>
    몽스비
  </div>
</div>
<div class='pull-left'>
  입니다.
</div>
properties (22)
authormongssb
permlinkre-anpigon-html-20180823t021937610z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-23 02:19:39
last_update2018-08-23 02:20:21
depth1
children1
last_payout2018-08-30 02:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation1,670,876,247,788
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,074,993
net_rshares0
@anpigon ·
확인해보니 빨간색 글자가 steemit.com에서만 되고 busy.org에는 안되네용.🤔
properties (22)
authoranpigon
permlinkre-mongssb-re-anpigon-html-20180823t023955741z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-23 02:39:57
last_update2018-08-23 02:39:57
depth2
children0
last_payout2018-08-30 02:39:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,076,431
net_rshares0
@ravenkim ·
좋은 정보 고맙습니다.^^
properties (22)
authorravenkim
permlinkre-anpigon-html-20181008t064625105z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-10-08 06:46:30
last_update2018-10-08 06:46:30
depth1
children0
last_payout2018-10-15 06:46:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation107,302,486,367,072
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,852,378
net_rshares0
@slowdive14 ·
친절한 개발자 선생님 같아요. ㅎ 이해가 잘 되네요.
properties (22)
authorslowdive14
permlinkre-anpigon-html-20180919t040634404z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-09-19 04:06:30
last_update2018-09-19 04:06:30
depth1
children1
last_payout2018-09-26 04:06:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation16,259,833,134,708
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,640,357
net_rshares0
@anpigon ·
잘 이해가 되서 다행입니다. 쉽게 설명하려고 노력했습니다.
properties (22)
authoranpigon
permlinkre-slowdive14-re-anpigon-html-20180919t042427179z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-09-19 04:24:27
last_update2018-09-19 04:24:27
depth2
children0
last_payout2018-09-26 04:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id71,641,369
net_rshares0
@snuff12 · (edited)
<a href = "https://steemit.com" target = "_blank"><img src = "https://t1.daumcdn.net/thumb/R1280x0/?fname=http://t1.daumcdn.net/brunch/service/user/1Vaj/image/WAcZ5wFwH7-gdvyBgxAa7ggtylY.png" alt = "이미지"></a>

~~이미지의 경우 href가 안되나보군요~~
target은 안되나보군요
좋은 정보 감사합니다 ㅎㅎ
properties (22)
authorsnuff12
permlinkre-anpigon-html-20181008t073319706z
categorykr
json_metadata{"tags":["kr"],"image":["https://t1.daumcdn.net/thumb/R1280x0/?fname=http://t1.daumcdn.net/brunch/service/user/1Vaj/image/WAcZ5wFwH7-gdvyBgxAa7ggtylY.png"],"app":"steemit/0.1","links":["https://steemit.com"]}
created2018-10-08 07:32:33
last_update2018-10-08 10:48:33
depth1
children2
last_payout2018-10-15 07:32:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation31,836,816,297,723
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,854,468
net_rshares0
@anpigon ·
이미지에도 href 링크 연결가능합니다.

마크다운은 요렇게

```
[![](https://t1.daumcdn.net/thumb/R1280x0/?fname=http://t1.daumcdn.net/brunch/service/user/1Vaj/image/WAcZ5wFwH7-gdvyBgxAa7ggtylY.png)](https://steemit.com)
```

<br> html은 요렇게

```
<a href="https://steemit.com"><img src="https://t1.daumcdn.net/thumb/R1280x0/?fname=http://t1.daumcdn.net/brunch/service/user/1Vaj/image/WAcZ5wFwH7-gdvyBgxAa7ggtylY.png"></a>
```

<br>요걸 원하는게 맞았으면 좋겠네요.ㅋ
properties (22)
authoranpigon
permlinkre-snuff12-re-anpigon-html-20181008t093709859z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-10-08 09:37:12
last_update2018-10-08 09:37:12
depth2
children1
last_payout2018-10-15 09:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length424
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,860,521
net_rshares0
@snuff12 ·
아하 감사합니다 ㅎㅎ 분명 이거랑 똑같은 실수를 했었던 거 같은데....
인간은 역시 망각의 동물인가 봅니다 ㅋㅋ
properties (22)
authorsnuff12
permlinkre-anpigon-re-snuff12-re-anpigon-html-20181008t104656208z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-10-08 10:46:12
last_update2018-10-08 10:46:12
depth3
children0
last_payout2018-10-15 10:46:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation31,836,816,297,723
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,864,037
net_rshares0
@steemitboard ·
Congratulations @anpigon! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/commented.png)](http://steemitboard.com/@anpigon) Award for the number of comments received

<sub>_Click on the badge to view your Board of Honor._</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>


To support your work, I also upvoted your post!


**Do not miss the last post from @steemitboard:**
[SteemitBoard and the Veterans on Steemit - The First Community Badge.](https://steemit.com/veterans/@steemitboard/steemitboard-and-the-veterans-on-steemit-the-first-community-badge)

> Do you like [SteemitBoard's project](https://steemit.com/@steemitboard)? Then **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-anpigon-20180823t114441000z
categorykr
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2018-08-23 11:44:39
last_update2018-08-23 11:44:39
depth1
children0
last_payout2018-08-30 11:44:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length965
author_reputation38,975,615,169,260
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,115,797
net_rshares0
@tailcock · (edited)
리스팀해 갑니다.
도움이 많이 될 것 같아요. 마크다운 공부도 되네요.
헐~~ 그런데 <div class='phishy'>
   리스팀
  </div> 메뉴가 사라졌어요.
properties (22)
authortailcock
permlinkre-anpigon-html-20181008t060602959z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-10-08 06:06:03
last_update2018-10-08 06:08:39
depth1
children2
last_payout2018-10-15 06:06:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation36,473,992,607,981
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,850,646
net_rshares0
@anpigon ·
리스팀 메뉴가 사라지기도 하는군요.
이 글이 도움이 되었다니 열심히 정리해서 작성한 보람이 있습니다.^^

Posted using [Partiko Android](https://steemit.com/@partiko-android)
properties (22)
authoranpigon
permlinkanpigon-re-tailcock-re-anpigon-html-20181008t094023418z
categorykr
json_metadata{"app":"partiko"}
created2018-10-08 09:40:24
last_update2018-10-08 09:40:24
depth2
children1
last_payout2018-10-15 09:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,860,646
net_rshares0
@tailcock · (edited)
$0.41
아~ 7일이 넘어가면 리스팀이 안되는군요.
👍  
properties (23)
authortailcock
permlinkre-anpigon-anpigon-re-tailcock-re-anpigon-html-20181008t095716479z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-10-08 09:57:18
last_update2018-10-08 10:06:03
depth3
children0
last_payout2018-10-15 09:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.310 HBD
curator_payout_value0.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation36,473,992,607,981
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,861,336
net_rshares277,415,364,336
author_curate_reward""
vote details (1)
@tkhol ·
유용한 정보 감사합니다^^

Posted using [Partiko Android](https://play.google.com/store/apps/details?id=io.partiko.android)
properties (22)
authortkhol
permlinktkhol-re-anpigon-html-20180822t215350904z
categorykr
json_metadata{"app":"partiko"}
created2018-08-22 21:53:51
last_update2018-08-22 21:53:51
depth1
children1
last_payout2018-08-29 21:53:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation4,684,180,418,641
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,057,236
net_rshares0
@anpigon ·
감사합니다. 
아직 모르는 분들을 위해서 정리하였습니다.
properties (22)
authoranpigon
permlinkre-tkhol-tkhol-re-anpigon-html-20180822t221636488z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-08-22 22:16:39
last_update2018-08-22 22:16:39
depth2
children0
last_payout2018-08-29 22:16:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,058,742
net_rshares0
@virus707 ·
이오스 계정이 없다면 마나마인에서 만든 계정생성툴을 사용해보는건 어떨까요?
https://steemit.com/kr/@virus707/2uepul
properties (22)
authorvirus707
permlinkre-anpigon-html-1535339885953tc74a61ec-de29-4f7a-9691-4e523f41314euid
categorykr
json_metadata{"tags":["support"],"users":["virus707"],"links":["https://steemit.com/kr/@virus707/2uepul"],"app":"null/null","format":"markdown"}
created2018-08-27 03:18:06
last_update2018-08-27 03:18:06
depth1
children1
last_payout2018-09-03 03:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation557,563,606,581,756
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries
0.
accountsteemj
weight250
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,462,339
net_rshares0
@anpigon ·
감사합니다.^^
properties (22)
authoranpigon
permlinkre-virus707-re-anpigon-html-1535339885953tc74a61ec-de29-4f7a-9691-4e523f41314euid-20180827t034455548z
categorykr
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]}
created2018-08-27 03:44:57
last_update2018-08-27 03:44:57
depth2
children0
last_payout2018-09-03 03:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation17,258,940,000,931
root_title"[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자."
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,463,894
net_rshares0