Forum
Fireworks CS4 help
bookworm
Contact in PM
bookworm
Messages count : 3
Likes count : 1
Registration :
15 May 2009
Can anyone help? I've created a slide show in Fireworks CS4 and want to put it into dreamweaver CS4 but I can't do it! I've tried copying the code and pasting it but as i'm teaching myself i'm struggling:confused:
Thanks
Thanks
-
EltonLiu
Messages count : 2Likes count : 0Registration : 4 August 2009If you’re putting a gif on your web site its
<img src="myImage.gif" alt="This is my gif" />
If you are teaching yourself I recommend you get the book Head First HTML with CSS & XHTML. Currently this is the best book on the market for learning and creating websites. -
bookworm
Messages count : 3Likes count : 1Registration : 15 May 2009Thanks EltonLiu
Thanks for the book advice, where do I paste this code?
Not got my laptop with me as i'm at work but will paste my code tonight if that helps?
Anyone know of any courses in Leicestershire (Market Harborough) area I can attend? -
EltonLiu
Messages count : 2Likes count : 0Registration : 4 August 2009It go in the body
<head>
<title>My WebSite</title>
</head>
<body>
<img src="image1.gif" alt="img 1" />
<img src="image2.jpg" alt="img 2" />
etc...
</body>