Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

Set up a div and call it oval. This will set up or CSS command to target the div.
<div id="oval"></div>
The next thing to do is set up is the style tag for our oval. We are doing basically the same thing that we did in the circle for CSS but we are giving one of our sides a longer width like we do in the rectangles for CSS. Then we take our border radius and make it 100%. :-)
<style>
#oval{
width:200px;
height:100px;
border-radius:100%;
background:orange;
}
</style>