What's new

Closed Guys help sa HTML

Status
Not open for further replies.

XxRenzxX

Enthusiast
Joined
Jan 13, 2014
Posts
1
Reaction
0
Points
62
Age
28
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.

Similar threads

Back
Top