0
how can I list my link horizontally in html
seriously need to know
3 Answers
+ 1
<style>
ul{
list-style-type:none;
}
li{
float:left;
padding:2px;
}
</style>
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
0
don't get
0
ok