Forum
Fireworks CS4 help
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
- If 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. - Thanks 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? - It 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>