Ok, unordered lists looks like the to go then, thanks guys.
What's a good way to test out how a website looks in different screen resolutions? I'm assuming there's a better way than constantly adjusting my screen resolution?
Say for example if I wanted every header to be the same, i.e. the same text and images how could I do this without having to copy and paste that html onto every page?
If you have a PHP server you could store the HTML within a header.php file and within each HTML page you'd just write <?php require("header.php") ?>. Whatever is displayed within header.php will be displayed in that respective page
Ok. Thought it would easily be possible using front end stuff. I will leave that to later then when I put it on a server. I've used JSP before, very shallow learning curve already knowing java.
When using the include statement, do you typically put that in the header div like this,
Code:
<div class="header">
<%@ include file="header.jsp" %>
</div>
or put the div in the header file?
Actually wouldn't it be more convenient to have one template page which includes content of a certain page when that url is requested?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.