Moving my image to the right

I have been trying to move mi image to the right of the page and am going to place text to the right , like in the example project. I read a similar topic, did what they did, helped somewhat, but still not where I would like.

here is my page

This is your code with the correct syntax ( remove % and add the semicolons ):
<div style="position:absolute; right: 0;"> <img src="https://bit.ly/2qBl4kp" alt="me">

Anyway it’s not a good practice to use inline style ( in this case at least ): you might search for flexbox / css grid ( from CSS tricks - A complete guide to Flexbox / A complete guide to Grid ) or at least the position property ( from MDN docs: position CSS property ) focusing on the relative options and put it in a CSS rule in your stylesheet ( in your CSS section when you’re working on codepen )