@@ -1605,24 +1605,26 @@ <h3 style="margin:7px" itemprop="eduQuestionType">Area of a Triangle</h3>
16051605< div itemprop ="subjectOf " itemscope itemtype ="https://schema.org/SoftwareApplication " style ="margin:12px " id ="triangle_area_calculator ">
16061606< meta itemprop ="name " content ="Triangle Area Calculator ">
16071607< meta itemprop ="description " content ="Calculate the area of a triangle from the lengths of its sides. ">
1608+ < meta itemprop ="description " content ="Calculate the area of a triangle from the lengths of its sides. ">
16081609< meta itemprop ="accessibilityControl " content ="fullKeyboardControl ">
16091610< meta itemprop ="applicationCategory " content ="Geometric Calculator ">
16101611< meta itemprop ="operatingSystem " content ="Web ">
16111612< meta itemprop ="interactivityType " content ="Active ">
16121613< meta itemprop ="isAccessibleForFree " content ="true ">
16131614< meta itemprop ="usageInfo " content ="Enter the lengths of the sides of the triangles one by one. ">
1614- < div itemprop ="assesses " itemscope itemtype ="https://schema.org/Observation ">
1615- < div itemprop ="measuredProperty " itemscope itemtype ="https://schema.org/Property ">
1616- < label itemprop =" name " for ="side1 "> Side 1:</ label >
1615+ < div itemprop ="assesses " itemscope itemtype ="https://schema.org/DefinedTerm ">
1616+ < div itemprop ="about " itemscope itemtype ="https://schema.org/Observation ">
1617+ < label for ="side1 "> Side 1:</ label >
16171618< input id ="side1 " type ="number " value ="1 " step ="any ">
1618- </ div >
16191619< br >
16201620< label for ="side2 "> Side 2:</ label >
16211621< input id ="side2 " type ="number " value ="1 " step ="any ">
16221622< br >
16231623< label for ="side3 "> Side 3:</ label >
16241624< input id ="side3 " type ="number " value ="1 " step ="any ">
1625- </ div >
1625+ < br >
1626+ < p itemprop ="measuredProperty " id ="triangle-area "> Triangle area</ p >
1627+ </ div > </ div >
16261628< script type ="module " async >
16271629 function triangleArea ( product ) {
16281630 return Math . sqrt ( product ) ;
@@ -1656,7 +1658,6 @@ <h3 style="margin:7px" itemprop="eduQuestionType">Area of a Triangle</h3>
16561658 document . getElementById ( 'side2' ) . addEventListener ( 'input' , updateTriangleArea ) ;
16571659 document . getElementById ( 'side3' ) . addEventListener ( 'input' , updateTriangleArea ) ;
16581660</ script >
1659- < p id ="triangle-area "> </ p >
16601661</ div >
16611662</ section >
16621663< br > < br > < br > < br >
0 commit comments