create account

Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer by aymenz

View this thread on: hive.blogpeakd.comecency.com
· @aymenz · (edited)
$70.61
Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer
<html>
<p>&nbsp;<strong>Hey Steemit Friends !</strong></p>
<p><img src="https://e.top4top.net/p_6235j86g1.jpg" width="1758" height="1033"/><br>
First I want to thank you , Today we will design the navbar of <strong>Steemit </strong>by <strong>HTML5 </strong>, <strong>CSS3 </strong>&amp; <strong>jQuery </strong>I want to give you my experience in web design just follow my courses and my works you will take some ideas will help you to build your first template .</p>
<p>I have done the logo of bitcoin by <strong>css3 </strong>I want to tell you that the languages of programming it's not only to design simple website or simple page you can do all what you want by it as I have done , Let's start .</p>
<p>&nbsp;This is what I will do today , the navbar of Steemit with <strong>HTML</strong> and <strong>CSS</strong> , it's from my browser :&nbsp;&nbsp;</p>
<p><img src="https://c.top4top.net/p_623qfejc1.png" width="1366" height="74"/></p>
<p>&nbsp;It's not exactly but I want to share you just the way and to encourage you to do some works like it &nbsp;..Open your text editor and new file save as index.html or any name you want , write the syntax of HTML and put the <code>&lt; style&gt;&lt; &gt; ;</code>tag into the head , open a new file give it <strong>name.js</strong> and import it in your HTML document , we will use jQuery so we need the jQuery file and this is the linke you must download it :&nbsp;</p>
<p>http://jquery.com/download/</p>
<p>You must download the compressed file and import it in your html document look at the picture :&nbsp;</p>
<p><img src="https://c.top4top.net/p_623tb9ky1.png" width="998" height="368"/></p>
<p>This is my HTML document called <strong>SteemitNav.html</strong> and I have the file of <strong>jquery </strong>called <strong>Plugin</strong>.js and the compressed file of <strong>jquery </strong>is ' <strong>jquery-3.1.1.min.js'</strong> .</p>
<p>Firstly we will add the logo and I have found this logo :&nbsp;</p>
<p><img src="http://s20.postimg.org/5veguik65/steemit_logo_final_Copy_3.png" width="393" height="190"/></p>
<p>Download and save it in folder ' <strong>img </strong>' it means you will create a new folder celled <strong>img </strong>to put the images inside it .</p>
<p><img src="https://c.top4top.net/p_623ghyo11.png" width="445" height="161"/></p>
<p>I have written the div container that will be the navbar all the navbar and we have two sections the logo and the informations , I have done the logo as you see in the picture div and class called logo into it I have my logo in image and the alternate text if you lose the picture .</p>
<p><img src="https://d.top4top.net/p_623enxcr2.png" width="712" height="410"/></p>
<p>The body has those proprieties to be by default :&nbsp;</p>
<ul>
  <li>margin : 0 to return to the default style&nbsp;</li>
  <li>padding : 0 also to return to the default style I wont no padding no margin to this document .</li>
</ul>
<p>Now we have <strong>.navbar-Steemit</strong> the container that will contain the navbar :</p>
<ul>
  <li>overflow : hidden to hide all elements which be outside the container&nbsp;</li>
  <li>padding : 10 pixels to give padding to this container&nbsp;</li>
  <li>Border : 1 pixel bold it's solid not dashed or any other type and the color is : <code>#d2d2d2&nbsp;</code></li>
</ul>
<p>To divide the elements in this container the logo to the right and the informations to the left we must do this tag&nbsp;</p>
<p><code>.navbar-Steemit &gt; div</code> it means the children div just in the child level will :&nbsp;</p>
<ul>
  <li>float : left to move the element to the left&nbsp;</li>
  <li>width : 50% to divide this container into two elements each one has 50%&nbsp;</li>
</ul>
<p>I have written those proprieties to the logo :</p>
<ul>
  <li>width &amp; height : the width is 200 pixels it's very clear and the height also&nbsp;</li>
  <li>margin : -20 pixels to return to the origin point&nbsp;</li>
  <li>padding : 0 to keep its place</li>
</ul>
<p>this is the result :&nbsp;</p>
<p><img src="https://e.top4top.net/p_6231bzuq3.png" width="1366" height="68"/></p>
<p>As you see we have finished the first section now we will move to do the second section is the informations , we have the icon of research and the link of submit story finally our image and when we click on the image will appear the menu let's do it :&nbsp;</p>
<p><img src="https://d.top4top.net/p_623rghbj1.png" width="767" height="306"/></p>
<p>This is the div about the informations it has class ' Info ' , So the first element is the icon of research you can find any icon you want in this site : www.iconfinder.com &nbsp;</p>
<p>the second element is Submit a story the link that when we click will open new tab to write an article&nbsp;</p>
<p>the last element we have our photo profile I have do it in span and this is the <strong>Css </strong>code :&nbsp;</p>
<p><img src="https://e.top4top.net/p_6231oydg2.png" width="770" height="318"/></p>
<p>For the first Icon I gave simple height and width and margin left 380 pixels to go to the right&nbsp;</p>
<p>The submit link : I have written&nbsp;</p>
<ul>
  <li>text-decoration : none , it's a link so it has the underline to block this propriety we use ' none '&nbsp;</li>
  <li>Font-size &amp; color : the size is 1.3 rem not pixel I have chosen this unity , <code>#1a5099</code> this color it's near that the original color on <strong>Steemit </strong>.</li>
  <li>margin : 0 on the top and bottom 20 left and right .</li>
</ul>
<p>Our profile image :</p>
<ul>
  <li>width &amp; height : the same width and height to be the same&nbsp;</li>
  <li>border-radius : 50% to be circle&nbsp;</li>
  <li>border : 1 pixel it's solid not dashed and the color is gray&nbsp;</li>
  <li>cursor : pointer to be like it <img src="https://cdn1.iconfinder.com/data/icons/streamline-selection-cursors/60/cell-0-0-30.png" width="30" height="30"/></li>
</ul>
<p>This is the result :&nbsp;</p>
<p><img src="https://f.top4top.net/p_6237957k3.png" width="1366" height="71"/></p>
<p>Now we will continue to do the menu bar , look at the code :&nbsp;</p>
<p><img src="https://e.top4top.net/p_623jled94.png" width="831" height="466"/></p>
<p>I have done a '<strong>ul </strong>' and in the list item I have written the images and the links that we have as you see , and this is the <strong>css </strong>proprieties :</p>
<p><img src="https://d.top4top.net/p_623gdr7a3.png" width="869" height="628"/></p>
<p>I will just explain the new proprieties because of the others we have used in the previous elements like width and height or the border ..etc so for the first class the <strong>unordered list</strong> :&nbsp;</p>
<ul>
  <li>List-style : none , we have in the list the circle that is the style of the list we will disable this propriety by 'none'</li>
  <li>Box-shadow : 1 pixel to the bottom and right, the color by the<code> rgba is ( 50,50,50,0.75) </code>the opacity is : 0.75</li>
  <li>Position : absolute to be free I gave to the top : 49 pixels and to the left : 1070 pixels&nbsp;</li>
  <li>Display : none , to hide this element when we want to see it we click on the profile picture&nbsp;</li>
</ul>
<p>The paragraph or the name of our profile :</p>
<ul>
  <li>font-weight : the bold is 700 it's not normal&nbsp;</li>
  <li>text-align : center to be in the center of list&nbsp;</li>
  <li>border-bottom : border on the bottom of this element</li>
</ul>
<p>Now the items of this list :</p>
<ul>
  <li>margin-left : 10 pixels to give a space to the left</li>
  <li>padding-bottom : it will be not attach wit the other elements&nbsp;</li>
</ul>
<p>The link has color and font weight bold and the text decoration is none to be without line .</p>
<p>The images are a little big I have minimized them by the width and height .</p>
<p><img src="https://c.top4top.net/p_6236hzzh2.png" width="466" height="263"/></p>
<p>In <strong>jQuery </strong>I have written the document ready function to do all this when the page load&nbsp;</p>
<p>I have selected the span in the div ' <strong>Info </strong>' by this code <code>$('.Info span')</code> and I have done the event ' <strong>on </strong>' when I click it will do this function <code>' on('click', function() ) '</code> and finally I selected the list and this event <strong>fadeToggle </strong>if the list hidden it will appear and the opposite .</p>
<p>this is the result :&nbsp;</p>
<p><img src="https://b.top4top.net/p_623543hk1.png" width="1363" height="467"/></p>
<p>&nbsp;May be the dimensions that I have mentioned is not standard for all , you can increase and decrease until you get the best form that you see or you want .&nbsp;</p>
<p>&nbsp;This is the <strong>navbar of Steemit</strong> , If you find this post benefit and you get more informations from it don't forget to upvote and follow me just to encourage me to know that there are peoples follow my courses ..You can also follow my courses of <strong>HTML</strong> and <strong>Excel</strong> , I will do other tutorial of <strong>Css</strong> for the beginners .Thank you for reading my article , I love you all ♥ By <a href="https://steemit.com/@aymenz">@aymenz</a> <img src="https://steemitimages.com/0x0/https://e.top4top.net/p_621rboty1.jpg" width="980" height="358"/></p>
</html>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 5 others
properties (23)
authoraymenz
permlinknavbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer
categorylife
json_metadata{"tags":["life","technology","programming","education","art"],"image":["https://e.top4top.net/p_6235j86g1.jpg","https://c.top4top.net/p_623qfejc1.png","https://c.top4top.net/p_623tb9ky1.png","http://s20.postimg.org/5veguik65/steemit_logo_final_Copy_3.png","https://c.top4top.net/p_623ghyo11.png","https://d.top4top.net/p_623enxcr2.png","https://e.top4top.net/p_6231bzuq3.png","https://d.top4top.net/p_623rghbj1.png","https://e.top4top.net/p_6231oydg2.png","https://cdn1.iconfinder.com/data/icons/streamline-selection-cursors/60/cell-0-0-30.png","https://f.top4top.net/p_6237957k3.png","https://e.top4top.net/p_623jled94.png","https://d.top4top.net/p_623gdr7a3.png","https://c.top4top.net/p_6236hzzh2.png","https://b.top4top.net/p_623543hk1.png","https://steemitimages.com/0x0/https://e.top4top.net/p_621rboty1.jpg"],"links":["http://jquery.com/download/","https://steemit.com/@aymenz"],"app":"steemit/0.1","format":"html"}
created2017-09-15 15:43:24
last_update2017-09-15 16:41:21
depth0
children14
last_payout2017-09-22 15:43:24
cashout_time1969-12-31 23:59:59
total_payout_value53.148 HBD
curator_payout_value17.458 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,250
author_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,979,001
net_rshares26,004,486,657,420
author_curate_reward""
vote details (69)
@emmalynnemiriam ·
@aymenz This is actually some incredible function!.
👍  
👎  , , , , , , ,
properties (23)
authoremmalynnemiriam
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170917t074833295z
categorylife
json_metadata{"tags":["life"],"users":["aymenz"],"app":"steemit/0.1"}
created2017-09-17 07:48:30
last_update2017-09-17 07:48:30
depth1
children1
last_payout2017-09-24 07:48: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_length51
author_reputation-995,670,637,569
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,115,475
net_rshares-23,508,931,202,861
author_curate_reward""
vote details (9)
@aymenz ·
Thank you ^_^
properties (22)
authoraymenz
permlinkre-emmalynnemiriam-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170917t104447677z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-17 10:44:51
last_update2017-09-17 10:44:51
depth2
children0
last_payout2017-09-24 10:44: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_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,125,943
net_rshares0
@essalucina ·
@aymenz We need remain informed and concentrate on things that are hidden from the majority.
👍  
👎  
properties (23)
authoressalucina
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170917t081256851z
categorylife
json_metadata{"tags":["life"],"users":["aymenz"],"app":"steemit/0.1"}
created2017-09-17 08:12:54
last_update2017-09-17 08:12:54
depth1
children1
last_payout2017-09-24 08:12:54
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_length92
author_reputation-927,447,050,773
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,116,935
net_rshares-5,878,382,828,963
author_curate_reward""
vote details (2)
@aymenz ·
If you have any questions or something you can ask me and I will do all my best to give you the important things , thank you
properties (22)
authoraymenz
permlinkre-essalucina-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170917t104419692z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-17 10:44:21
last_update2017-09-17 10:44:21
depth2
children0
last_payout2017-09-24 10:44: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_length124
author_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,125,916
net_rshares0
@hybridpa · (edited)
jQuery is so outdated there are way better and faster technologies. If you want to build fast web pages start with Javascript. Later learn some ReactJs, and you will  for sure have nice, fast and responsive web page.

 But starting with slow jQuery? Why even people need it this days.
👍  
properties (23)
authorhybridpa
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170917t214645820z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-17 21:46:45
last_update2017-09-17 21:48:12
depth1
children1
last_payout2017-09-24 21:46: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_length284
author_reputation1,626,513,564
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,171,866
net_rshares1,126,116,755
author_curate_reward""
vote details (1)
@aymenz ·
for me jQuery is very fast if you want for example to select element just do it ' $('element') ' but in Javascript ' document.getElementById('id') ' and you will do it in variable it's so long and jQuery has many beautiful events you can mix the two languages and build a great website , thank you to your comment !
properties (22)
authoraymenz
permlinkre-hybridpa-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170919t103203327z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-19 10:32:06
last_update2017-09-19 10:32:06
depth2
children0
last_payout2017-09-26 10:32: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_length315
author_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,313,520
net_rshares0
@juninalethia ·
@aymenz Wow, that is certainly so wonderful. I'm quite grateful for that! Find it irresistible..
👍  
properties (23)
authorjuninalethia
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170916t214755185z
categorylife
json_metadata{"tags":["life"],"users":["aymenz"],"app":"steemit/0.1"}
created2017-09-16 21:47:54
last_update2017-09-16 21:47:54
depth1
children1
last_payout2017-09-23 21:47:54
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_length96
author_reputation-80,936,466,356
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,088,083
net_rshares1,163,308,179
author_curate_reward""
vote details (1)
@aymenz ·
thank you ^_^
properties (22)
authoraymenz
permlinkre-juninalethia-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170916t235253505z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-16 23:52:54
last_update2017-09-16 23:52:54
depth2
children0
last_payout2017-09-23 23:52:54
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_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,093,833
net_rshares0
@londongas ·
Great Post a bit too complex for my tiny mind but defo a lot of effort been put in here. I need to up my game :)
👍  
properties (23)
authorlondongas
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170915t192230014z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-15 19:22:30
last_update2017-09-15 19:22:30
depth1
children1
last_payout2017-09-22 19:22: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_length112
author_reputation5,227,280,250
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,996,113
net_rshares1,033,117,554
author_curate_reward""
vote details (1)
@aymenz ·
Welcome thank you ^_^ If you want to learn the HTML language I have done some courses and I will continue thank's again
properties (22)
authoraymenz
permlinkre-londongas-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170915t192747918z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-15 19:27:51
last_update2017-09-15 19:27:51
depth2
children0
last_payout2017-09-22 19:27: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_length119
author_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,996,511
net_rshares0
@osamos ·
wow great post , thank you , important info
👍  
properties (23)
authorosamos
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170916t231348350z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-16 23:14:03
last_update2017-09-16 23:14:03
depth1
children1
last_payout2017-09-23 23:14: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_length43
author_reputation9,212,649,999
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,091,966
net_rshares1,163,308,179
author_curate_reward""
vote details (1)
@aymenz ·
your welcome thank you too for this comment ^_^
properties (22)
authoraymenz
permlinkre-osamos-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170916t235329285z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-16 23:53:30
last_update2017-09-16 23:53:30
depth2
children0
last_payout2017-09-23 23:53: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_length47
author_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,093,857
net_rshares0
@tsoulix ·
amazing post 
thank you bro
👍  ,
properties (23)
authortsoulix
permlinkre-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170915t192944545z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-15 19:29:42
last_update2017-09-15 19:29:42
depth1
children1
last_payout2017-09-22 19:29: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_length27
author_reputation1,066,192,153,888
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,996,626
net_rshares1,738,685,415
author_curate_reward""
vote details (2)
@aymenz ·
your welcome thank you too
properties (22)
authoraymenz
permlinkre-tsoulix-re-aymenz-navbar-steemit-with-html5-css3-and-jquery-by-aymenz-become-web-designer-20170915t212704897z
categorylife
json_metadata{"tags":["life"],"app":"steemit/0.1"}
created2017-09-15 21:27:06
last_update2017-09-15 21:27:06
depth2
children0
last_payout2017-09-22 21:27: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_length26
author_reputation22,313,300,380,026
root_title"Navbar Steemit With HTML5 , CSS3 & Jquery By Aymenz Become Web Designer"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,003,589
net_rshares0