<section class="elementor-section elementor-top-section elementor-element elementor-element-22910d4 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="22910d4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a1f8101" data-id="a1f8101" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a0bdb0c elementor-arrows-position-inside elementor-widget elementor-widget-image-carousel" data-id="a0bdb0c" data-element_type="widget" data-settings="{"navigation":"arrows","autoplay":"yes","pause_on_hover":"yes","pause_on_interaction":"yes","autoplay_speed":5000,"infinite":"yes","speed":500}" data-widget_type="image-carousel.default"> <div class="elementor-widget-container"> <style> /*! elementor - v3.17.0 - 25-10-2023 */ .elementor-widget-image-carousel .swiper, .elementor-widget-image-carousel .swiper-container { position: static } .elementor-widget-image-carousel .swiper-container .swiper-slide figure, .elementor-widget-image-carousel .swiper .swiper-slide figure { line-height: inherit } .elementor-widget-image-carousel .swiper-slide { text-align: center } .elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide { max-width: calc(100% / var(--e-image-carousel-slides-to-show, 3)) } </style> <div class="elementor-image-carousel-wrapper swiper-container" dir="ltr"> <div class="elementor-image-carousel swiper-wrapper" aria-live="off"> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="1 of 6"> <figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2023/11/2-4.png" alt="2" /> </figure> </div> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="2 of 6"> <figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2023/11/3-3.png" alt="3" /> </figure> </div> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="3 of 6"> <figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2023/11/4-2.png" alt="4" /> </figure> </div> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="4 of 6"> <figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2023/11/5-2.png" alt="5" /> </figure> </div> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="5 of 6"> <figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2023/11/6-2.png" alt="6" /> </figure> </div> <div class="swiper-slide" role="group" aria-roledescription="slide" aria-label="6 of 6"> <figure class="swiper-slide-inner"><img decoding="async" class="swiper-slide-image" src="wp-content/uploads/2023/11/1-4.png" alt="1" /> </figure> </div> </div> <div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0"> <i aria-hidden="true" class="eicon-chevron-left"></i> </div> <div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0"> <i aria-hidden="true" class="eicon-chevron-right"></i> </div> </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>