🔒 Closed Guys help sa HTML

Status
Not open for further replies.

XxRenzxX

Leecher
10536604_920931427934009_1684693579_n.jpg

help naman po kung panu ung ganun na navigation bar
 
pwede ka po gumamit ng either <table> or <ul> tag sa paggawa ng ganyang navigation bar
usually pag table<table>, magiging nesting nyan ganto:
<table>
<tr>
<td>
<a>[name ng link (eg. Home)]</a>
</td>
</tr>
</table>

kada isang link, isang nesting ng <td><a>[link name]</a></td>
note: mag aalign na yan horizontally lahat ng <td> as long as naka nest sa same table row (<tr>)

kapag naman unordered list (<ul>):
<ul>
<li><a>[link name1]</a></li>
<li><a>[link name2]</a></li>
[other following links]
</ul>
para mag align yan horizontally:
kelangan mo gumamit ng css:
/to remove the bullet in each list's left side/
ul
{
list-style:none;
}
/to align all lists horizontally/
li
{
float:left;
}

para naman sa design, use css3 gradient backgrounds.
 
Status
Not open for further replies.

About this Thread

  • 8
    Replies
  • 1K
    Views
  • 9
    Participants
Last reply from:
killercraft

Trending Topics

Online now

Members online
1,274
Guests online
1,434
Total visitors
2,708

Forum statistics

Threads
2,272,090
Posts
28,940,146
Members
1,237,989
Latest member
kenneth0528
Back
Top