I have inserted an image directly into my HTML code, which serves as a small profile picture. I am attempting to position this image in the top right corner of my website, but no matter what CSS property I apply, the image refuses to budge.
body {
font-size: 14px;
font-family: 'Noto Serif', serif, Arial;
background-image: url(image/background1.jpeg);
background-repeat: no-repeat;
background-size: 100%;
}
.first_part {
text-align: center;
}
.flottant {
background: top right;
}
<div class="first_part">
<h1>Roger Albert</h1>
<p>Entrepreneur, author, and co-founder of OpenClassrooms</p>
</div>
<img src="image/13531.png" class="flottant" alt="Profile picture" />