I have organized a few DIVs within a parent DIV. I am trying to make them align horizontally, but despite my efforts, they remain stacked vertically.
Here is the code snippet:
<style>
#entrycontainer {
height: 100px;
width: 500px;
}
#entry {
height: 100px;
width: 200px;
}
</style>
<div id="entrycontainer" >
<div id="entry" >
<h1>PHP File Upload/Browser</h1>
<img src="img/projectimg/fileupimg.png" />
<p>PHP MySQL CSS</p>
</div>
<div id="entry" >
<h1>PHP File Upload/Browser</h1>
<img src="img/projectimg/fileupimg.png" />
<p>PHP MySQL CSS</p>
</div>
</div>