<pre class="language-html"><code data-toggle="prism"><section class="py-24 bg-primary-50 bg-gradient-to-br to-secondary-100 from-primary-100">
<div class="container">
<div class="row md:justify-center mb-10">
<div class="col relative md:w-9/12 text-center lg:w-8/12">
<h1 class="display-6 font-semibold text-gray-900">
All the features you need to build
<span class="d-inline-block inline-block bg-gradient-to-br from-primary to-secondary bg-clip-text text-transparent">
faster
</span>
</h1>
</div>
</div>
</div>
</section></code></pre>
To add line numbers to Prism add line-numbers to pre class name.
<pre class="language-html line-numbers"><code data-toggle="prism"><section class="py-24 bg-primary-50 bg-gradient-to-br to-secondary-100 from-primary-100">
<div class="container">
<div class="row md:justify-center mb-10">
<div class="col relative md:w-9/12 text-center lg:w-8/12">
<h1 class="display-6 font-semibold text-gray-900">
All the features you need to build
<span class="d-inline-block inline-block bg-gradient-to-br from-primary to-secondary bg-clip-text text-transparent">
faster
</span>
</h1>
</div>
</div>
</div>
</section></code></pre>
To add a custom theme to Prism add window.vPrismTheme with the theme you want inside a script tag anywhere on the page or site.
<script>window.vPrismTheme = 'night-owl';</script>
<pre class="language-html line-numbers"><code data-toggle="prism"><section class="py-24 bg-primary-50 bg-gradient-to-br to-secondary-100 from-primary-100">
<div class="container">
<div class="row md:justify-center mb-10">
<div class="col relative md:w-9/12 text-center lg:w-8/12">
<h1 class="display-6 font-semibold text-gray-900">
All the features you need to build
<span class="d-inline-block inline-block bg-gradient-to-br from-primary to-secondary bg-clip-text text-transparent">
faster
</span>
</h1>
</div>
</div>
</div>
</section></code></pre>