Here is my task first and foremost:
At the top of the page body, insert a div element with the id "header" containing the inline image "mlogo.jpg". The aternate text for the image should be "Mayer Photography". Insert an inline style that sets the border width of the image to 0 pixels.
So that's my task and here is what I have come up with:
<body>
<div style="id=header width: 0px"><img src="mlogo.jpg" alt="Mayer Photography">
</div>
</body>
I don't know if I'm entering the style attribute correctly to set the width. That's my biggest dilemma I think. And also I'm not sure but I'm thinking the div element should be written like this instead:
<div id="header"><img src="mlogo.jpg alt="Mayer Photography">
<style="width: 0px">
</div>
If you could help me out that'd be awesome! Thanks.