안녕하세요. @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> ~~마크다운 표현식~~ ```  ___ ## `<sup>`, `<sub>` 태그 `<sup>`는 윗첨자(super subscript), `<sub>`은 아랫첨자(subscript)를 의미한다. 스팀잇에서 작은 글자를 표현할때 많이 사용한다. ``` 윗첨자<sup>윗첨자</sup> 아랫첨자<sub>아랫첨자</sub> ```  ___ ## `<i>`, `<em>` 태그 `<i>`는 Italic를 뜻하며 *이탤릭체 또는 기울임체*라고 한다. `<em>`은 Emphasize를 뜻한다. 그러나 HTML 렌더링 결과는 동일하다. 마크다운은 `*` 또는 `_`를 사용한다. ``` <i>Italic</i> <em>Emphasize</em> *마크다운 표현식* _마크다운 표현식_ ```  ___ ## `<strong>`, `<b>` 태그 `<strong>`, `<b>` 는 글자를 강조할때 사용한다. 마크다운은 `**` 또는, `__`를 사용한다. ``` <strong>Strong</strong> <b>Bold</b> **마크다운 표현식** __마크다운 표현식__ ```  ___ ## `<q>`, `<blockquote>` 태그 `<q>`는 짧은 인용문, `<blockquote>`는 긴 인용문에 사용한다. 마크다운은 긴 인용문에 `>`를 사용한다. ``` <q>짧은 인용문</q> <blockquote> 추구할 수 있는 용기가 있다면 우리의 모든 꿈은 이뤄질 수 있다. <br> – 월트 디즈니 </blockquote> > 마크다운 표현식에서는 인용문을 이렇게 사용한다. \- 안피곤 ```  ___ ## `<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> ```  <hr> ## pull-left div를 왼쪽으로 float한다. ``` <div class='pull-left'> 왼쪽에 출력 </div> ```  <hr> ## text-justify 텍스트를 양쪽 정렬한다. ``` <div class='text-justify'> 텍스트 양쪽 정렬 </div> ```  <hr> ## text-center 텍스트를 가운데 정렬한다. `<center>`와 동일하다. ``` <div class='text-center'> 텍스트 가운데 정렬 </div> ```  <hr> ## text-right 텍스트를 오른쪽 정렬한다. ``` <div class='text-right'> 텍스트 오른쪽 정렬 </div> ```  > <sup>결과만 봤을때는 text-right와 pull-right와 동일하다고 생각 할 수 있다. 하지만, 두 스타일의 용도와 정렬 방식은 다르다. text-right는 `<div>` 내부 항목들을 오른쪽으로 정렬한다. 그리고 pull-right는 `<div>` 영역을 오른쪽에 출력한다.</sup> <hr> ## text-rtl 글자 방향을 오른쪽에서 왼쪽으로 표시한다. 특수문자가 왼쪽으로 표시되는 것 말고는 text-right와 차이가 거의 없어 보인다. ``` <div class='text-rtl'> 글자 방향을 오른쪽에서 왼쪽으로... </div> ```  <hr> ## phishy phishy는 글자색을 빨간색으로 표시해준다. ``` <div class='phishy'> 빨간색 </div> ```  # 응용해보기 위의 스타일을 응용하면 아래와 같은 표현도 가능하다. 이렇게 까지 사용할 일은 없다고 생각되지만, 재미를 위해서 만들어 보았다. ```html <div class='pull-left'> 문장에서 가운데 글자를 </div> <div class='pull-left'> <div class='phishy'> 빨간색 </div> </div> <div class='pull-left'> 으로 강조하고 싶다. </div> ```  또는, ```html <div class='pull-left'> <sup><table> <tr><th>1 단계</th></tr> <tr><td>눈을 감는다</td></tr> </table></sup> </div> <div class='pull-left'>➔</div> <div class='pull-left'> <sup><table> <tr><th>2 단계</th></tr> <tr><td>잡념을 없앤다</td></tr> </table></sup> </div> <div class='pull-left'>➔</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> ```  여기까지 읽어주셔서 감사합니다.
author | anpigon |
---|---|
permlink | html |
category | kr |
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"]} |
created | 2018-08-22 15:08:45 |
last_update | 2018-12-29 15:06:06 |
depth | 0 |
children | 47 |
last_payout | 2018-08-29 15:08:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.796 HBD |
curator_payout_value | 0.495 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,209 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 69,027,439 |
net_rshares | 1,614,363,724,028 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
woo7739 | 0 | 0 | 15% | ||
warofcraft | 0 | 29,677,340,245 | 20% | ||
guest123 | 0 | 708,435,235 | 100% | ||
steemitboard | 0 | 925,685,575 | 1% | ||
sisilafamille | 0 | 597,363,189 | 100% | ||
jjy | 0 | 41,729,678,893 | 5% | ||
virus707 | 0 | 148,759,889,110 | 1% | ||
forhappywomen | 0 | 101,012,730,656 | 100% | ||
krexchange | 0 | 0 | 100% | ||
pediatrics | 0 | 3,456,533,330 | 100% | ||
sleepcat | 0 | 0 | 100% | ||
monghae | 0 | 0 | 100% | ||
dj-on-steem | 0 | 0 | 100% | ||
snuff12 | 0 | 0 | 100% | ||
room9 | 0 | 18,140,596,082 | 100% | ||
relaxkim | 0 | 1,872,277,412 | 100% | ||
codingman | 0 | 25,111,824,978 | 100% | ||
songa0906 | 0 | 546,276,700,375 | 50% | ||
ayogom | 0 | 10,377,802,939 | 50% | ||
momoggo | 0 | 204,174,888,287 | 20% | ||
asinayo | 0 | 20,738,457,675 | 40% | ||
songbj | 0 | 245,998,871 | 100% | ||
lovelyyeon | 0 | 15,862,864,824 | 11% | ||
anabolic | 0 | 28,787,921,860 | 100% | ||
cowboybebop | 0 | 25,843,694,132 | 100% | ||
tailcock | 0 | 0 | 30% | ||
sd974201 | 0 | 1,468,552,656 | 5% | ||
mimistar | 0 | 7,868,171,640 | 25% | ||
slowdive14 | 0 | 0 | 100% | ||
str7motor | 0 | 1,164,415,982 | 100% | ||
tkhol | 0 | 4,826,205,465 | 50% | ||
anpigon | 0 | 8,651,191,839 | 100% | ||
pooka | 0 | 2,100,836,393 | 100% | ||
joyvancouver | 0 | 7,072,564,680 | 100% | ||
lucky2 | 0 | 255,385,766,045 | 10% | ||
jisoooh0202 | 0 | 229,348,272 | 100% | ||
unicodedemi | 0 | 0 | 100% | ||
stressedboiler | 0 | 0 | 100% | ||
glory7 | 0 | 78,234,222,588 | 16% | ||
parandurume | 0 | 0 | 100% | ||
hjh0827 | 0 | 3,308,362,367 | 100% | ||
tamarakanakova | 0 | 0 | 100% | ||
defectiveindent | 0 | 0 | 100% | ||
bluengel | 0 | 11,922,874,003 | 100% | ||
massfishing | 0 | 0 | 100% | ||
rollpub | 0 | 0 | 100% | ||
wakeprince | 0 | 0 | 100% | ||
bbooaae | 0 | 5,467,569,530 | 75% | ||
imrahelk | 0 | 737,300,063 | 100% | ||
gaenkgun | 0 | 519,976,756 | 100% | ||
dalkong323 | 0 | 607,714,489 | 100% | ||
laylador | 0 | 497,967,592 | 100% |
대박 자료네요! 고맙습니다
author | anabolic |
---|---|
permlink | re-anpigon-html-20180823t024905157z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 02:49:06 |
last_update | 2018-08-23 02:49:06 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 02:49:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 1,063,474,838,329 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,077,089 |
net_rshares | 0 |
아나볼릭님 감사합니다.^^
author | anpigon |
---|---|
permlink | re-anabolic-re-anpigon-html-20180823t032006926z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 03:20:06 |
last_update | 2018-08-23 03:20:06 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 03:20:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,079,175 |
net_rshares | 0 |
<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'>➔</div> <div class='pull-left'> <sup><table> <tr><th>2 단계</th></tr> <tr><td>보팅을 한다</td></tr> </table></sup> </div> <div class='pull-left'>➔</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>
author | ayogom |
---|---|
permlink | re-anpigon-html-20180824t025754622z |
category | kr |
json_metadata | {"tags":["kr"],"users":["ayogom"],"app":"steemit/0.1"} |
created | 2018-08-24 02:57:57 |
last_update | 2018-08-24 02:57:57 |
depth | 1 |
children | 1 |
last_payout | 2018-08-31 02:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 734 |
author_reputation | 74,209,287,963,096 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,183,935 |
net_rshares | 0 |
대...댓글달고 보...보팅하고 파...팔로우 하겠습니다.
author | anpigon |
---|---|
permlink | re-ayogom-re-anpigon-html-20180824t031523147z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-24 03:15:24 |
last_update | 2018-08-24 03:15:24 |
depth | 2 |
children | 0 |
last_payout | 2018-08-31 03:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,185,243 |
net_rshares | 0 |
감사합니당 잘쓰겠습니당 ~~^^리스팀 해갈께영
author | bbooaae | ||||||
---|---|---|---|---|---|---|---|
permlink | re-anpigon-2018824t214620575z | ||||||
category | kr | ||||||
json_metadata | {"tags":["kr"],"app":"busy/2.5.6","format":"markdown","community":"busy","users":[],"links":[],"image":[]} | ||||||
created | 2018-08-24 12:46:21 | ||||||
last_update | 2018-08-24 12:47:12 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-08-31 12:46:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 25 | ||||||
author_reputation | 67,197,492,770,252 | ||||||
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 69,224,231 | ||||||
net_rshares | 0 |
뽀돌님 리스팀 감사합니다~^^
author | anpigon |
---|---|
permlink | re-bbooaae-re-anpigon-2018824t214620575z-20180824t125539943z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-24 12:55:42 |
last_update | 2018-08-24 12:55:42 |
depth | 2 |
children | 0 |
last_payout | 2018-08-31 12:55:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,225,004 |
net_rshares | 0 |
꺄아아아아~앙~! 정리해주셔 완전 감사합니당~ *^^*  Created by : mipha thanks :) | 항상 행복한 하루 보내셔용*^^* 감사합니다 *^^* <br>**'스파'**시바(Спасибо스빠씨-바)~! -|-
author | bluengel |
---|---|
permlink | re-anpigon-html-20180823t022433297z |
category | kr |
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"]} |
created | 2018-08-23 02:24:48 |
last_update | 2018-08-23 02:24:48 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 02:24:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 244 |
author_reputation | 129,269,571,273,945 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,075,369 |
net_rshares | 0 |
블루엔젤님 감사합니다~~~🤗
author | anpigon |
---|---|
permlink | re-bluengel-re-anpigon-html-20180823t023802797z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-23 02:38:06 |
last_update | 2018-08-23 02:38:06 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 02:38:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,076,320 |
net_rshares | 0 |
오호! 유익한 정보네요! ^^
author | codingman |
---|---|
permlink | re-anpigon-html-20180823t012303058z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 01:23:06 |
last_update | 2018-08-23 01:23:06 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 01:23:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 23,188,231,710,844 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,070,922 |
net_rshares | 0 |
코딩맨님 감사합니다.^^
author | anpigon |
---|---|
permlink | re-codingman-re-anpigon-html-20180823t012908421z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-23 01:29:09 |
last_update | 2018-08-23 01:29:09 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 01:29:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,071,379 |
net_rshares | 0 |
깔끔한 정리 ㅎㅎ 감사합니다!
author | could0222 |
---|---|
permlink | re-anpigon-html-20180824t010753784z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-24 01:07:57 |
last_update | 2018-08-24 01:07:57 |
depth | 1 |
children | 1 |
last_payout | 2018-08-31 01:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 119,226,968,027 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,175,729 |
net_rshares | 0 |
깔끔하게 정리했습니다.😁
author | anpigon |
---|---|
permlink | re-could0222-re-anpigon-html-20180824t031438356z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-24 03:14:42 |
last_update | 2018-08-24 03:14:42 |
depth | 2 |
children | 0 |
last_payout | 2018-08-31 03:14:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,185,188 |
net_rshares | 0 |
<p> <p> <div class='pull-left'> <sup><table> <tr><th>1 단계</th></tr> <tr><td>이거 아는건데...</td></tr> </table></sup> </div> <div class='pull-left'>➔</div> <div class='pull-left'> <sup><table> <tr><th>2 단계</th></tr> <tr><td>첨보는 것도 있네...</td></tr> </table></sup> </div> <div class='pull-left'>➔</div> <div class='pull-left'> <sup><table> <tr><th>3단계</th></tr> <tr><td>우와 이런 것도 되나?</td></tr> </table></sup> </div> <div class='pull-left'>➔</div> <div class='pull-left'> <sup><table> <tr><th>마지막 단계</th></tr> <tr><td>기립박수... 짝짝짝</td></tr> </table></sup> </div>
author | cowboybebop |
---|---|
permlink | re-anpigon-html-20180822t152828557z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-22 15:28:27 |
last_update | 2018-08-22 15:29:21 |
depth | 1 |
children | 1 |
last_payout | 2018-08-29 15:28:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 603 |
author_reputation | 3,804,140,160,604 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,029,229 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
parandurume | 0 | 0 | 100% |
활용을 잘하시네요~😁
author | anpigon |
---|---|
permlink | re-cowboybebop-re-anpigon-html-20180822t221555484z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-22 22:15:57 |
last_update | 2018-08-22 22:15:57 |
depth | 2 |
children | 0 |
last_payout | 2018-08-29 22:15:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,058,695 |
net_rshares | 0 |
 요건 놀랐습니다!! ㅎㅎㅎ 대박이네요
author | forhappywomen |
---|---|
permlink | re-anpigon-html-20180827t083619347z |
category | kr |
json_metadata | {"tags":["kr"],"image":["https://cdn.steemitimages.com/DQmU9NtTVHvk8FcuC1aCfTxJ6jBspE9P5g5ZhcTRteeYHAz/image.png"],"app":"steemit/0.1"} |
created | 2018-08-27 08:36:18 |
last_update | 2018-08-27 08:36:18 |
depth | 1 |
children | 1 |
last_payout | 2018-09-03 08:36:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 46,993,075,275,149 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 69,482,218 |
net_rshares | 0 |
대박~ 감사합니다.😃
author | anpigon |
---|---|
permlink | re-forhappywomen-re-anpigon-html-20180827t103912121z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-27 10:39:12 |
last_update | 2018-08-27 10:39:12 |
depth | 2 |
children | 0 |
last_payout | 2018-09-03 10:39:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,490,240 |
net_rshares | 0 |
좋은 팁들 감사합니다!
author | glory7 |
---|---|
permlink | re-anpigon-html-20180823t010448644z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 01:04:51 |
last_update | 2018-08-23 01:04:51 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 01:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 420,998,392,418,509 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,069,519 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thxtom | 0 | 0 | 100% |
제 글에 관심가져주셔서 감사합니다.^^
author | anpigon |
---|---|
permlink | re-glory7-re-anpigon-html-20180823t011724515z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 01:17:24 |
last_update | 2018-08-23 01:17:24 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 01:17:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 21 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,070,497 |
net_rshares | 0 |
영상 어찌 넣을지 몰랐는데 이런방법이! 감사합니다:)
author | imrahelk |
---|---|
permlink | re-anpigon-html-20180822t233708090z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-22 23:37:09 |
last_update | 2018-08-22 23:37:09 |
depth | 1 |
children | 1 |
last_payout | 2018-08-29 23:37:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 10,432,088,396,439 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,063,637 |
net_rshares | 0 |
다음번에는 영상 넣어보세요. 팝송 이야기에 영상에서 노래가 나온다면 더 좋겠어요.^^
author | anpigon |
---|---|
permlink | re-imrahelk-re-anpigon-html-20180823t000409287z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 00:04:09 |
last_update | 2018-08-23 00:04:09 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 00:04:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,065,311 |
net_rshares | 0 |
파란 하늘 보고 힐링하시는 말에 대댓글 달라다가 블로그 방문했더니 유용한 정보가 있어서 여기 댓글 답니다. ㅋㅋㅋ 정보 감사합니다!!! :) 근데 저 두줄 포스팅할때 디브 클래스 안에서는 다른 html 태그 안먹던데... 예를 들어서 글씨 굵게하거나 링크 거는 것들... []() 요렇게 링크 거는거요. 디브클래스 밖에서 할땐 되는데 그 안에서는 왜 안되는거죠?
author | jisoooh0202 |
---|---|
permlink | re-anpigon-html-20180823t053314830z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 05:33:18 |
last_update | 2018-08-23 05:33:18 |
depth | 1 |
children | 2 |
last_payout | 2018-08-30 05:33:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 4,755,820,563,511 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,088,152 |
net_rshares | 0 |
요렇게 공백을 잘 넣어서 사용해보세요~ ``` <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>
author | anpigon |
---|---|
permlink | re-jisoooh0202-re-anpigon-html-20180823t100657428z |
category | kr |
json_metadata | {"tags":["kr"],"links":["링크"],"app":"steemit/0.1"} |
created | 2018-08-23 10:06:57 |
last_update | 2018-08-23 10:06:57 |
depth | 2 |
children | 1 |
last_payout | 2018-08-30 10:06:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 315 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,108,350 |
net_rshares | 0 |
아아아아아아아아아아아아아아아아아아아아아아 그래서 그랬구나.....................ㅜㅜ 이제 두줄 포스팅 안하긴 하지만... 정보 감사합니다!!! :)
author | jisoooh0202 |
---|---|
permlink | re-anpigon-re-jisoooh0202-re-anpigon-html-20180824t045507866z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-24 04:55:09 |
last_update | 2018-08-24 04:55:09 |
depth | 3 |
children | 0 |
last_payout | 2018-08-31 04:55:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 4,755,820,563,511 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,191,861 |
net_rshares | 0 |
유익한 정보 감사합니다. 도움이 될 거 같아요. 리스팀합니다.
author | jjy |
---|---|
permlink | re-anpigon-html-20180823t040021238z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 04:00:21 |
last_update | 2018-08-23 04:00:21 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 04:00:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 251,505,780,656,428 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,081,840 |
net_rshares | 0 |
리스팀 감사합니다.^^
author | anpigon |
---|---|
permlink | re-jjy-re-anpigon-html-20180823t045159177z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-23 04:52:00 |
last_update | 2018-08-23 04:52:00 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 04:52:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,085,196 |
net_rshares | 0 |
공부를 많이 해야겠지요.
author | kyju |
---|---|
permlink | re-anpigon-html-20181008t101751005z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-10-08 10:17:51 |
last_update | 2018-10-08 10:17:51 |
depth | 1 |
children | 0 |
last_payout | 2018-10-15 10:17:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 75,271,066,691,598 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,862,499 |
net_rshares | 0 |
유익한 정보 감사합니다.
author | laylador |
---|---|
permlink | re-anpigon-html-20180824t173107892z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-24 17:31:06 |
last_update | 2018-08-24 17:31:06 |
depth | 1 |
children | 0 |
last_payout | 2018-08-31 17:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 96,466,401,933,289 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,248,717 |
net_rshares | 0 |
우왕 정리 잘 되어있네요. 리스팀해요^^
author | mimistar |
---|---|
permlink | re-anpigon-html-20180823t011716893z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 01:17:15 |
last_update | 2018-08-23 01:17:15 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 01:17:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 48,272,689,745,508 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,070,489 |
net_rshares | 0 |
미미별님 감사합니다.^^
author | anpigon |
---|---|
permlink | re-mimistar-re-anpigon-html-20180823t012844410z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-23 01:28:45 |
last_update | 2018-08-23 01:28:45 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 01:28:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,071,341 |
net_rshares | 0 |
멋지심
author | mongssb |
---|---|
permlink | re-anpigon-html-20180823t021815068z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 02:18:18 |
last_update | 2018-08-23 02:18:18 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 02:18:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 1,670,876,247,788 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,074,901 |
net_rshares | 0 |
칭찬 감사합니다.😁
author | anpigon |
---|---|
permlink | re-mongssb-re-anpigon-html-20180823t024029806z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-23 02:40:30 |
last_update | 2018-08-23 02:40:30 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 02:40:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,076,480 |
net_rshares | 0 |
<div class='pull-left'> 나는 </div> <div class='pull-left'> <div class='phishy'> 몽스비 </div> </div> <div class='pull-left'> 입니다. </div>
author | mongssb |
---|---|
permlink | re-anpigon-html-20180823t021937610z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-23 02:19:39 |
last_update | 2018-08-23 02:20:21 |
depth | 1 |
children | 1 |
last_payout | 2018-08-30 02:19:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 144 |
author_reputation | 1,670,876,247,788 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,074,993 |
net_rshares | 0 |
확인해보니 빨간색 글자가 steemit.com에서만 되고 busy.org에는 안되네용.🤔
author | anpigon |
---|---|
permlink | re-mongssb-re-anpigon-html-20180823t023955741z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-23 02:39:57 |
last_update | 2018-08-23 02:39:57 |
depth | 2 |
children | 0 |
last_payout | 2018-08-30 02:39:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,076,431 |
net_rshares | 0 |
좋은 정보 고맙습니다.^^
author | ravenkim |
---|---|
permlink | re-anpigon-html-20181008t064625105z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-10-08 06:46:30 |
last_update | 2018-10-08 06:46:30 |
depth | 1 |
children | 0 |
last_payout | 2018-10-15 06:46:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 107,302,486,367,072 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,852,378 |
net_rshares | 0 |
친절한 개발자 선생님 같아요. ㅎ 이해가 잘 되네요.
author | slowdive14 |
---|---|
permlink | re-anpigon-html-20180919t040634404z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-09-19 04:06:30 |
last_update | 2018-09-19 04:06:30 |
depth | 1 |
children | 1 |
last_payout | 2018-09-26 04:06:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 16,259,833,134,708 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,640,357 |
net_rshares | 0 |
잘 이해가 되서 다행입니다. 쉽게 설명하려고 노력했습니다.
author | anpigon |
---|---|
permlink | re-slowdive14-re-anpigon-html-20180919t042427179z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-09-19 04:24:27 |
last_update | 2018-09-19 04:24:27 |
depth | 2 |
children | 0 |
last_payout | 2018-09-26 04:24:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,641,369 |
net_rshares | 0 |
<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은 안되나보군요 좋은 정보 감사합니다 ㅎㅎ
author | snuff12 |
---|---|
permlink | re-anpigon-html-20181008t073319706z |
category | kr |
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"]} |
created | 2018-10-08 07:32:33 |
last_update | 2018-10-08 10:48:33 |
depth | 1 |
children | 2 |
last_payout | 2018-10-15 07:32:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 31,836,816,297,723 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,854,468 |
net_rshares | 0 |
이미지에도 href 링크 연결가능합니다. 마크다운은 요렇게 ``` [](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>요걸 원하는게 맞았으면 좋겠네요.ㅋ
author | anpigon |
---|---|
permlink | re-snuff12-re-anpigon-html-20181008t093709859z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-10-08 09:37:12 |
last_update | 2018-10-08 09:37:12 |
depth | 2 |
children | 1 |
last_payout | 2018-10-15 09:37:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 424 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,860,521 |
net_rshares | 0 |
아하 감사합니다 ㅎㅎ 분명 이거랑 똑같은 실수를 했었던 거 같은데.... 인간은 역시 망각의 동물인가 봅니다 ㅋㅋ
author | snuff12 |
---|---|
permlink | re-anpigon-re-snuff12-re-anpigon-html-20181008t104656208z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-10-08 10:46:12 |
last_update | 2018-10-08 10:46:12 |
depth | 3 |
children | 0 |
last_payout | 2018-10-15 10:46:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 31,836,816,297,723 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,864,037 |
net_rshares | 0 |
Congratulations @anpigon! You have completed the following achievement on Steemit and have been rewarded with new badge(s) : [](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**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anpigon-20180823t114441000z |
category | kr |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-08-23 11:44:39 |
last_update | 2018-08-23 11:44:39 |
depth | 1 |
children | 0 |
last_payout | 2018-08-30 11:44:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 965 |
author_reputation | 38,975,615,169,260 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,115,797 |
net_rshares | 0 |
리스팀해 갑니다. 도움이 많이 될 것 같아요. 마크다운 공부도 되네요. 헐~~ 그런데 <div class='phishy'> 리스팀 </div> 메뉴가 사라졌어요.
author | tailcock |
---|---|
permlink | re-anpigon-html-20181008t060602959z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-10-08 06:06:03 |
last_update | 2018-10-08 06:08:39 |
depth | 1 |
children | 2 |
last_payout | 2018-10-15 06:06:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 36,473,992,607,981 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,850,646 |
net_rshares | 0 |
리스팀 메뉴가 사라지기도 하는군요. 이 글이 도움이 되었다니 열심히 정리해서 작성한 보람이 있습니다.^^ Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | anpigon |
---|---|
permlink | anpigon-re-tailcock-re-anpigon-html-20181008t094023418z |
category | kr |
json_metadata | {"app":"partiko"} |
created | 2018-10-08 09:40:24 |
last_update | 2018-10-08 09:40:24 |
depth | 2 |
children | 1 |
last_payout | 2018-10-15 09:40:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,860,646 |
net_rshares | 0 |
아~ 7일이 넘어가면 리스팀이 안되는군요.
author | tailcock |
---|---|
permlink | re-anpigon-anpigon-re-tailcock-re-anpigon-html-20181008t095716479z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-10-08 09:57:18 |
last_update | 2018-10-08 10:06:03 |
depth | 3 |
children | 0 |
last_payout | 2018-10-15 09:57:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.310 HBD |
curator_payout_value | 0.103 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 36,473,992,607,981 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,861,336 |
net_rshares | 277,415,364,336 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcoingodperson | 0 | 277,415,364,336 | 70% |
유용한 정보 감사합니다^^ Posted using [Partiko Android](https://play.google.com/store/apps/details?id=io.partiko.android)
author | tkhol |
---|---|
permlink | tkhol-re-anpigon-html-20180822t215350904z |
category | kr |
json_metadata | {"app":"partiko"} |
created | 2018-08-22 21:53:51 |
last_update | 2018-08-22 21:53:51 |
depth | 1 |
children | 1 |
last_payout | 2018-08-29 21:53:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 4,684,180,418,641 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,057,236 |
net_rshares | 0 |
감사합니다. 아직 모르는 분들을 위해서 정리하였습니다.
author | anpigon |
---|---|
permlink | re-tkhol-tkhol-re-anpigon-html-20180822t221636488z |
category | kr |
json_metadata | {"tags":["kr"],"app":"steemit/0.1"} |
created | 2018-08-22 22:16:39 |
last_update | 2018-08-22 22:16:39 |
depth | 2 |
children | 0 |
last_payout | 2018-08-29 22:16:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,058,742 |
net_rshares | 0 |
이오스 계정이 없다면 마나마인에서 만든 계정생성툴을 사용해보는건 어떨까요? https://steemit.com/kr/@virus707/2uepul
author | virus707 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-anpigon-html-1535339885953tc74a61ec-de29-4f7a-9691-4e523f41314euid | ||||||
category | kr | ||||||
json_metadata | {"tags":["support"],"users":["virus707"],"links":["https://steemit.com/kr/@virus707/2uepul"],"app":"null/null","format":"markdown"} | ||||||
created | 2018-08-27 03:18:06 | ||||||
last_update | 2018-08-27 03:18:06 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-09-03 03:18:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 81 | ||||||
author_reputation | 557,563,606,581,756 | ||||||
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 69,462,339 | ||||||
net_rshares | 0 |
감사합니다.^^
author | anpigon |
---|---|
permlink | re-virus707-re-anpigon-html-1535339885953tc74a61ec-de29-4f7a-9691-4e523f41314euid-20180827t034455548z |
category | kr |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["kr"],"users":[],"links":[],"image":[]} |
created | 2018-08-27 03:44:57 |
last_update | 2018-08-27 03:44:57 |
depth | 2 |
children | 0 |
last_payout | 2018-09-03 03:44:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 17,258,940,000,931 |
root_title | "[Steemit] 스팀잇에서 사용 가능한 HTML태그와 속성을 알아보자." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,463,894 |
net_rshares | 0 |