The Error: Element style not allowed as child of element section in this context.
The code:
<section class="wrapper style4 container">
<h2 style="font-family:calibri;opacity:.0;">
something here
</h2>
<!-- Content -->
<div class="content">
<section>
<h2 style="font-family:calibri;">something here</h2>
<p style="font-family:calibri;">
something here
</p>
<style>
table {
width: 100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
}
table#t01 tr:nth-child(odd) {
background-color: #fff;
}
table#t01 th {
background-color: black;
color: white;
}
</style>
</section>
</div>
Anyone could help me how to fix the error?