What i want is that my pic be aligned with my skills list, skills on the left, pic on the right.
So what i have done is, put the list and the pic inside separate "div". Used the "display: inline-block;" property in the CSS.
Note, both the div's have "width: 50%;"
.divIN { margin: 25px 0px 25px 0px;}
.both {
width: 50%;
display: inline-block;
}
#imag {
width: 100%;
height: auto;
}
<div id="top" class="divIN">
<div class="both">
<h1>Present Skills</h1>
<ul>
<li>C/C++</li>
<li>Python</li>
<li>HTML(CSS, Bootstrap)</li>
<li>Java(Not Right Away!)</li>
</ul>
</div>
<div class="both"><img src="https://drive.google.com/uc?id=0B9tI4qB-P3oAZjJ6dWZ5VHpPRkU" alt="Image not displayed" id="imag">
</div>
</div>