Click to See Complete Forum and Search --> : Multi Page Webpage
FierceGraphics
08-14-2009, 09:07 PM
Hey all im curious just how to create a multiple page website??? OK mabey im asking it wrong lol how do i create multiple pages in dreamweaver or should i just design them in photoshop with the same outline just leave out the intangibles and the stuff that will change based on the page? Help
You can email me at michael@fiercegraphics.com
CkretAjint
08-14-2009, 10:07 PM
Just create 2 pages and make sure that they share some form of navigation to get back forth between the two.
*blinks* Am I missing something?
FierceGraphics
08-14-2009, 10:09 PM
What i mean is there a way to duplicate a page while im working on it? With out save,open,ect ect?
CkretAjint
08-14-2009, 10:11 PM
Ummm.... You could create a Dreamweaver template file (.dwt) for all the common elements between pages. Or code using .aspx and use "include files" for all the common elements on your page (header and footer)
FierceGraphics
08-14-2009, 10:12 PM
Ummm.... You could create a Dreamweaver template file (.dwt) for all the common elements between pages. Or code using .aspx and use "include files" for all the common elements on your page (header and footer)
Ok cool ill try that! Thanks i love this site :D
hank_scorpio
08-14-2009, 10:42 PM
This might help
http://www.onextrapixel.com/2009/07/15/the-importance-of-wireframes-in-web-design-and-9-tools-to-create-wireframes/
Create a master template then dump the page content in the middle.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Fierce Graphics</title>
</head>
<body>
<div id="container">
<h1>Fierce Graphics<span class="logo"></span></h1>
<ul id="nav-main">
<li><a href="#">About Me</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Social Networking</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div id="content">
<!-- place page content here -->
</div>
<p id="site-info">Fierce Graphics © 2009</p>
</div>
</body>
</html>
vanishdesign
08-15-2009, 03:57 PM
Ummm.... You could create a Dreamweaver template file (.dwt) for all the common elements between pages. Or code using .aspx and use "include files" for all the common elements on your page (header and footer)
You're more likely to have PHP on your server unless you're paying extra for one that runs on Windows. Either way you can always use SSI:
<!--#include virtual="/header.html" -->
Content
<!--#include virtual="/footer.html" -->