I am programming a website for a music festival. How do I make the two body elements below appear side by side?
<body class="date-and-time">
<p>Located at Sydney Showground.</p>
<p>Date: 19-24 July 2022</p>
</body>
<body class="stages">
<p>With a total of 10 unique areas, there's something for everyone at Vaporfest!</p>
</body>
Here is the CSS styling element, if it helps.
.date-and-time {
width: 960px;
height: 640px;
}
.stages {
width: 700px;
height: 1173px;
}