Hello, I want to create a network of websites. How would I go about putting a bar or something at the top which has links to other site sites in the network as well as the name of the network?
Exscuse me if I am wrong. Are you talking about a Navigation bar that has link and those link's contain different website's? Or link that go to a different part of You're Website?
Most people would consider a navigation bar as simply a list of links, so the html you would use could be, <ul id="top"> <li> <a href="http://path">Link 1 </a> </li> <li> <a href="http://path2">Link 2 </a> </li> <li> <a href="http://path3"> Link 3 </a> </li> </ul> Code (markup): Then you would use some CSS to style that set of unordered lists. #top { line-height: 20px; background-color: red; } #top li { display: inline; } #top li a { color: #000000; } Code (markup): Something like that would make a horizontal menu, depending on where you place that in your HTML would depend on where it gets displayed.