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