<section class="elementor-section elementor-top-section elementor-element elementor-element-22f1f36 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="22f1f36" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-7d013a8 ot-flex-column-vertical" data-id="7d013a8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1d8e388 elementor-widget elementor-widget-iprogress" data-id="1d8e388" data-element_type="widget" data-widget_type="iprogress.default"> <div class="elementor-widget-container"> <div class="circle-progress" data-color1="#ff403e" data-color2="#ff811b"> <div class="inner-bar" data-percent="75"> <span> <span class="percent">75</span>% </span> <canvas height="195" width="195"></canvas></div> <h4>SEO & Marketing</h4> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-9833fbf ot-flex-column-vertical" data-id="9833fbf" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c963ca9 elementor-widget elementor-widget-iprogress" data-id="c963ca9" data-element_type="widget" data-widget_type="iprogress.default"> <div class="elementor-widget-container"> <div class="circle-progress" data-color1="#ff403e" data-color2="#ff811b"> <div class="inner-bar" data-percent="43"> <span> <span class="percent">43</span>% </span> <canvas height="195" width="195"></canvas></div> <h4>Keywords Results</h4> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-05bc5ea ot-flex-column-vertical" data-id="05bc5ea" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f0a1e27 elementor-widget elementor-widget-iprogress" data-id="f0a1e27" data-element_type="widget" data-widget_type="iprogress.default"> <div class="elementor-widget-container"> <div class="circle-progress" data-color1="#ff403e" data-color2="#ff811b"> <div class="inner-bar" data-percent="66"> <span> <span class="percent">66</span>% </span> <canvas height="195" width="195"></canvas></div> <h4>Google Analytics</h4> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-203af5a ot-flex-column-vertical" data-id="203af5a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-560fe70 elementor-widget elementor-widget-iprogress" data-id="560fe70" data-element_type="widget" data-widget_type="iprogress.default"> <div class="elementor-widget-container"> <div class="circle-progress" data-color1="#ff403e" data-color2="#ff811b"> <div class="inner-bar" data-percent="15"> <span> <span class="percent">15</span>% </span> <canvas height="195" width="195"></canvas></div> <h4>Off Page SEO</h4> </div> </div> </div> </div> </div> </div> </section>
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>