html move image slightly up code example
Example 1: how to make an image move across the screen in html
<marquee scrollamount="10"
direction="left"
behavior="scroll">
<img src="fly3.gif" />
</marquee>
Example 2: how to move an image up in css
.image{
position: relative;
top: -125px;
}