1st Project Feedback/Assistance!

Here’s my workings so far, I’m a bit concerned that everything goes off kilter when the browser is resized but I’m not sure how this can be fixed.

General feedback also very welcomed.

Thanks!

Hey,

I’m not an expert but, here is what i think:

You are using <h3> to format a bunch of text, you wrap it around a <ul> -> that looks wrong to me.
I would suggest to format your text by using classes and defining it in your CSS instead of using <h3> as a wrapper.

I think your padding-left: 800px is a problem (also in your <h3> definition.
There are other options to align your content.
I’m like to use the row and col classes from bootstrap to achieve this (there are probably other and better ways).
A suggestion would be to use something like:

<div class="row">
<div class="col-4"></div>
<div class="col-4"></div>
<div class="col-4">here you enter your your UL stuff</div>
</div>

(and change to bootstrap 4 instead of 3, or it won’t work).
It’s only a suggestion… there are other solutions i’m sure.