Help with Frontpage

fiveub's Slave
Associate
Joined
1 Sep 2007
Posts
1,461
Location
OcUK HQ
For my graphics module in CiDA i have to make an eportfolio but as its the graphics module im linking in a bit of photoshop.

The main problem is i HAVE to create the site in frontpage. I have made the banner and navigation bar. So at this moment in time my website looks like an upside down L.

------------------------------------------------------------------
BANNER

------------------------------------------------------------------
|
|
|
|
NAVIGATION | how do i write here using frontpage
|
|
|
|
|

My only problem is writing the area where i need to write up my project. How can i do this?


Thanks, Ben.
 
Untitled-5.png
 
Last edited:
Well seeing as everyone has had their input on the choice of tool (bearing in mind you didn't actually ask for it!!), I actually never had a problem with FrontPage and think it's successor, Expression, is a dream to use.

But...

Back to your problem. That looks like you've just dumped the images on with no thought about DIV's!!!

I'd imagine your code would look something like:
Code:
<body>
<img ?????????????/>
<img ????????????/>
</body>

If you created DIV's as place holders then what you want to achieve is a piece of cake!

Don't take this the wrong way, but just how experienced are you in HTML because what you're wanting to do is pretty damn basic!

Im not experienced at all with HTML. I know the basic <html> </html> tags along with <body> </body> and making text bigger. :(
 
This is literally typed by hand, so you're gonna need to fill in the blanks:

Code:
<body>
<div id="header"><img src=""/></div>
<div id="side"><img src=""/>sdfsd</div>
</body>

See where the 'img src=""' tag is, just put the path to your images in the double quotes.

Like I said, that is SOOOOO basic it's unreal, and you'll probably need to enhance it a hell of a lot, but it should provide a stepping stone for ya.

Are you suggesting i just use notepad then?
 
Back
Top Bottom