Text Not Wrapping Around Right Floated Image [closed]

Your heading is clearing the float. This is in your stylesheet:

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

You’ll need to get rid of that, or overwrite it in this context, to allow headings to wrap around floated images.