How to put ad higher where is first sentence Right now I use <div style="display:block;float:left;margin: 10px;"> https://i.imgur.com/zmEFTH8.png
Don't use display: block and float: left together, it's redundant. All you need is just float: left. You can try line-height to pull it up. <div style="float: left; margin: 0 10px 10px 10px; line-height: 16px;"> Change that line-height until the banner is where you want it to be.