203k views
0 votes
Create an HTML document on the topic Circle v/s Rectangle v/s Triangle.

The web page should contain three frames

User Mo Shal
by
4.3k points

1 Answer

3 votes

Answer:

Here is answer

Step-by-step explanation:

<!DOCTYPE html>

<html>

<head>

<title>Circle vs Rectangle vs Triangle</title>

</head>

<body>

<h1>Circle vs Rectangle vs Triangle</h1>

<!-- Create three frames -->

<iframe src="circle.html" frameborder="0"></iframe>

<iframe src="rectangle.html" frameborder="0"></iframe>

<iframe src="triangle.html" frameborder="0"></iframe>

</body>

</html>

<h2>Circle</h2>

<p>A circle is a geometric shape with no sides or corners. It is defined as a set of points that are all the same distance from a central point, known as the center of the circle.</p>

<p>The distance from the center to the edge of the circle is known as the radius. The diameter of a circle is the distance across the circle, passing through the center. The circumference of a circle is the distance around the outside of the circle.</p>

<p>Circles are often used in math and geometry, and they have many practical applications in everyday life, such as in wheels, coins, and circular objects.</p>

User Ashish Rawat
by
4.7k points