<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SEO ROI Calculator</title> <style> body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #f5f5f5; } .calculator { background-color: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } .calculator h1 { color: #2ECC71; /* Green color */ font-size: 24px; margin-bottom: 20px; } .input-field { margin-bottom: 15px; } .input-field label { display: block; margin-bottom: 5px; color: #FF4500; /* Deep Orange color */ } .input-field input { padding: 10px; border: 1px solid #ccc; border-radius: 5px; width: 100%; } .button { background-color: orange; /* Orange color */ color: black; /* Black color */ padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; } .result { margin-top: 20px; font-size: 18px; color: #FFA500; /* Orange color */ } </style> </head> <body> <div class="calculator"> <h1>SEO ROI Calculator</h1> <div class="input-field"> <label for="monthlySearchVolume">Monthly Search Volume</label> <input type="number" id="monthlySearchVolume" placeholder="Enter monthly search volume"> </div> <div class="input-field"> <label for="conversionRate">Conversion Rate (%)</label> <input type="number" id="conversionRate" placeholder="Enter conversion rate"> </div> <div class="input-field"> <label for="averageProductValue">Average Product Value (USD)</label> <input type="number" id="averageProductValue" placeholder="Enter average product value"> </div> <button class="button" onclick="calculateROI()">Calculate ROI</button> <p id="result"></p> </div> <script> function calculateROI() { const monthlySearchVolume = document.getElementById("monthlySearchVolume").value; const conversionRate = document.getElementById("conversionRate").value / 100; const averageProductValue = document.getElementById("averageProductValue").value; const totalSales = monthlySearchVolume * conversionRate * averageProductValue; const result = document.getElementById("result"); result.textContent = "Your estimated SEO ROI is: $" + totalSales.toFixed(2); } </script> </body> </html>
Write, Run & Share HTML code online using OneCompiler's HTML online Code editor for free. It's one of the robust, feature-rich online Code editor for HTML language, running on the latest version HTML5. Getting started with the OneCompiler's HTML compiler is simple and pretty fast. The editor shows sample boilerplate code when you choose language as HTML
. You can also specify the stylesheet information in styles.css
tab and scripts information in scripts.js
tab and start coding.
HTML(Hyper Text Markup language) is the standard markup language for Web pages, was created by Berners-Lee in the year 1991. Almost every web page over internet might be using HTML.
<!DOCTYPE html>
<html>
and ends with </html>
<h1>
to <h6>
where <h1>
is the highest important heading and <h6>
is the least important sub-heading.<p>..</p>
tag.<a>
tag.
<a href="https://onecompiler.com/html">HTML online compiler</a>
<img>
tag, where src
attribute consists of image name.<button>..</button>
tag<ul>
for unordered/bullet list and <ol>
for ordered/number list, and the list items are defined in <li>
.<a href="https://onecompiler.com/html">HTML online compiler</a>
CSS(cascading style sheets) describes how HTML elements will look on the web page like color, font-style, font-size, background color etc.
Below is a sample style sheet which displays heading in green and in Candara font with padding space of 25px.
body{
padding: 25px;
}
.title {
color: #228B22;
font-family: Candara;
}
<table>
tag.<tr>
tag<th>
tag<td>
tag<caption>
tag<script>
is the tag used to write scripts in HTML<script src="script.js"></script>