hatalı yaptığınız bir kısım vardır.
Bu şekilde ekledim çalşmadı
<style>
.pricingTable {
font-family: Arial, sans-serif;
text-align: center;
background: #f3f4f6;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pricingTable-title {
font-size: 2em;
color: #333;
margin-bottom: 5px;
}
.pricingTable-subtitle {
font-size: 1.2em;
color: #666;
margin-bottom: 30px;
}
.pricingTable-firstTable {
display: flex;
justify-content: center;
gap: 20px;
}
.pricingTable-firstTable_table {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 280px;
padding: 20px;
list-style: none;
}
.pricingTable-firstTable_table__header {
font-size: 1.5em;
color: #333;
margin-bottom: 10px;
}
.pricingTable-firstTable_table__pricing {
font-size: 2em;
color: #333;
margin: 10px 0;
}
.pricingTable-firstTable_table__pricing span {
display: inline-block;
font-size: 1em;
}
.pricingTable-firstTable_table__options {
list-style: none;
padding: 0;
margin: 20px 0;
}
.pricingTable-firstTable_table__options li {
padding: 8px 0;
color: #666;
font-size: 1em;
}
.pricingTable-firstTable_table__getstart {
padding: 12px 20px;
font-size: 1em;
color: #fff;
background-color: #007bff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.pricingTable-firstTable_table__getstart:hover {
background-color: #0056b3;
}
</style>
<div class="pricingTable">
<h2 class="pricingTable-title">Find a plan that's right for you.</h2>
<h3 class="pricingTable-subtitle">Every plan comes with a 30-day free trial.</h3>
<ul class="pricingTable-firstTable">
<li class="pricingTable-firstTable_table">
<h1 class="pricingTable-firstTable_table__header">Bronze Packege</h1>
<p class="pricingTable-firstTable_table__pricing"><span>$</span><span>10</span><span>Month</span></p>
<ul class="pricingTable-firstTable_table__options">
<li>Unlimited Listing</li>
<li>Edit Your Listing</li>
<li>Approve Reviews</li>
</ul>
<button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
</li>
<li class="pricingTable-firstTable_table">
<h1 class="pricingTable-firstTable_table__header">Gold Packege</h1>
<p class="pricingTable-firstTable_table__pricing"><span>$</span><span>19</span><span>Month</span></p>
<ul class="pricingTable-firstTable_table__options">
<li>Unlimited Listing</li>
<li>Edit Your Listing</li>
<li>Approve Reviews</li>
<li>Take Booking Online</li>
<li>24/7 Support Service</li>
</ul>
<button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
</li>
<li class="pricingTable-firstTable_table">
<h1 class="pricingTable-firstTable_table__header">Platinum Packege</h1>
<p class="pricingTable-firstTable_table__pricing"><span>$</span><span>49</span><span>Month</span></p>
<ul class="pricingTable-firstTable_table__options">
<li>Unlimited Listing</li>
<li>Edit Your Listing</li>
<li>Approve Reviews</li>
</ul>
<button class="pricingTable-firstTable_table__getstart">Get Started Now</button>
</li>
</ul>
</div>