110 lines
3.8 KiB
PHP
Executable File
110 lines
3.8 KiB
PHP
Executable File
@extends('layouts.master')
|
|
@section('title') @lang('translation.highlight') @endsection
|
|
@section('content')
|
|
|
|
@component('components.breadcrumb')
|
|
@slot('li_1') Advanced UI @endslot
|
|
@slot('title') Highlight @endslot
|
|
@endcomponent
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="card">
|
|
<div class="card-header align-items-center d-flex">
|
|
<div class="flex-grow-1">
|
|
<h4 class="card-title mb-0">HTML Highlight</h4>
|
|
</div>
|
|
</div><!-- end card header -->
|
|
|
|
<div class="card-body">
|
|
<p class="text-muted">HTML highlight is used to mark or highlight text that is of property, relevance, or special interest to an HTML document. here is the example shown below.</p>
|
|
|
|
<div class="live-preview">
|
|
<pre>
|
|
<code class="language-markup"><!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Velzon - Responsive Admin Dashboard Template</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>This is a Heading 1</h1>
|
|
<h2>This is a Heading 2</h2>
|
|
<h3>This is a Heading 3</h3>
|
|
<h4>This is a Heading 4</h4>
|
|
</div>
|
|
<!-- end div content -->
|
|
</body>
|
|
</html></code></pre>
|
|
</div>
|
|
</div><!-- end card-body -->
|
|
</div><!-- end card -->
|
|
</div>
|
|
<!-- end col -->
|
|
</div>
|
|
<!-- end row -->
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="card">
|
|
<div class="card-header align-items-center d-flex">
|
|
<div class="flex-grow-1">
|
|
<h4 class="card-title mb-0">CSS Highlight</h4>
|
|
</div>
|
|
</div><!-- end card header -->
|
|
|
|
<div class="card-body">
|
|
<p class="text-muted">CSS highlight is used to mark or highlight text that is of property, relevance, or special interest to a CSS document. Here is the example shown below.</p>
|
|
<div class="live-preview">
|
|
<pre>
|
|
<code class="language-css">body {
|
|
color: #212529;
|
|
background-color: #f3f3f9;
|
|
font-family: "Poppins",sans-serif;
|
|
}
|
|
|
|
.example {
|
|
margin: 0;
|
|
color: #74788d;
|
|
}</code></pre>
|
|
</div>
|
|
</div><!-- end card-body -->
|
|
</div><!-- end card -->
|
|
</div>
|
|
<!-- end col -->
|
|
</div>
|
|
<!-- end row -->
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="card">
|
|
<div class="card-header align-items-center d-flex">
|
|
<div class="flex-grow-1">
|
|
<h4 class="card-title mb-0">Javascript Highlight</h4>
|
|
</div>
|
|
</div><!-- end card header -->
|
|
|
|
<div class="card-body">
|
|
<p class="text-muted">Javascript highlight is used to mark or highlight text that is of property, relevance, or special interest to a Javascript document. Here is the example shown below.</p>
|
|
<div class="live-preview">
|
|
<pre>
|
|
<code class="language-js">function myFunction() {
|
|
var divElement = document.getElementById("myDIV");
|
|
if (divElement.style.display === "none") {
|
|
divElement.style.display = "block";
|
|
} else {
|
|
divElement.style.display = "none";
|
|
}
|
|
}</code></pre>
|
|
</div>
|
|
</div><!-- end card-body -->
|
|
</div><!-- end card -->
|
|
</div>
|
|
<!-- end col -->
|
|
</div>
|
|
<!-- end row -->
|
|
@endsection
|
|
@section('script')
|
|
<script src="{{ URL::asset('/assets/libs/prismjs/prismjs.min.js') }}"></script>
|
|
<script src="{{ URL::asset('/assets/js/app.min.js') }}"></script>
|
|
@endsection
|