Personal portfolio - Image alignment

How to align my image properly just on the right side of the text as given here

Any other feedbacks in the code?

If all you want is a fix, then add the following to #aboutmeimg in your css file

 position: relative;
 top: -150px;
 left: 250px;

Were you intending to use bootstrap with this? I saw a lot of bootstrap classes that seemed out of place.
You can read more about it here: https://www.w3schools.com/bootstrap/bootstrap_ref_all_classes.asp

Thank you, Stephan for guiding me, I’m beginner in this and required your further guidance.

Please assist me in following points.

  1. How can i change “My portfolio” hyperlink color in the header section
  2. How can i reduce my profile pic in about me id. height=200…this command is not working.

Further in the code can you please give me which part of the code is unnecessary, yes i am trying to implement bootstrap in this. Is there any other simple and better way in terms of coding.

Please aasist.
Here is the link

Regards,
Sourabh Bhatt

1.- use something like:

<a class="force" href="#">My Portfolio</a>

<style>
.force {
  color: red;
}
</style>

2.- do something like:

<img style=“width:110px;”

or better yet:

<img class="img-responsive myProfilePic" 

<style>
.myProfilePic {
  width: 100px;
  height: 100px;
} 
</style>