Levoric Learn home
Build your responsive sites by utilizing LevoricLearn free code

Levoric Learn targets to be an advanced, multi-purpose, and extensive frontend toolkit. Levoric Learn with the help of which you can create your project and customize it with using sass. properties of a grid system, continue with built up components, and improve your projects with well coded javascript plugins.

Build your responsive sites by utilizing LevoricLearn free code

Copied!

npm install sax
npm install githubname/reponame
npm install @myorg/privatepackage
npm install node-tap --save-dev
npm install dtrace-provider --save-optional
npm install readable-stream --save-exact
npm install ansi-regex --save-bundle

Copied!

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
h1 {
color: white;
font-size: 25px;
}
p {
color: white;
font-size: 25px;
}
</style>
<body>
<h1>Levoric Learn</h1>
<p>Build your responsive website by Utilizing this code</p>
</body>
</html>


CSS3

.style-ll {
width: 100%;
height: 5vh;
margin: 25px;
margin-left: -0px;
outline: none
}

#search::-webkit-input-placeholder { 
color: rgb(20, 20, 44);
}
#search {
background-image: url('/LevoricLearn/search-llearn.png');
background-position: 12px 7px;
background-repeat: no-repeat;
margin-left: -0px;
border: 2px solid rgb(151, 176, 255);
border-radius: 30px;
margin-bottom: 12px;
padding: 12px 20px 12px 40px;
outline: none;
background-color: rgb(172, 180, 255)
}
#search:hover {
background-image: url('/LevoricLearn/search-llearn.png');
background-position: 12px 7px;
background-repeat: no-repeat;
margin-left: -0px;
border: 2px solid rgb(151, 176, 255);
border-radius: 30px;
margin-bottom: 12px;
padding: 12px 20px 12px 40px;
outline: none;
background-color: rgb(172, 180, 255)
}
#search:active {
background-image: url('/LevoricLearn/search-llearn.png');
background-position: 12px 7px;
background-repeat: no-repeat;
margin-left: -0px;
border: 2px solid rgb(151, 176, 255);
border-radius: 30px;
margin-bottom: 12px;
padding: 12px 20px 12px 40px;
outline: none;
background-color: rgb(172, 180, 255)
}
#ll-code-item-list {
list-style: none;
margin-left: -40px;
}
.ll-code-list {
border: 1px solid rgb(57, 99, 252);
border-radius: 5px;
padding: 5px;
margin: 10px;
}


HTML5

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
<input id="search" onkeyup="search_levoriclearn()" type="text"name="search" placeholder="L.L.">
<ul id="ll-code-item-list">
<li class="ll-code-list">HTML3</li>
<li class="ll-code-list">CSS3</li>
<li class="ll-code-list">JavaScript</li>
<li class="ll-code-list">React</li>
<li class="ll-code-list">Node.Js</li>
<li class="ll-code-list">Angular</li>
<li class="ll-code-list">TypeScript</li>
<li class="ll-code-list">Python</li>
<li class="ll-code-list">Ruby</li>
<li class="ll-code-list">Django</li>
<li class="ll-code-list">GoLang</li>
<li class="ll-code-list">ASP.NET core</li>
<li class="ll-code-list">XML</li>
<li class="ll-code-list">Express.js</li>
</ul>
</div>
</body>
</html>


  • HTML3
  • CSS3
  • JavaScript
  • React
  • Node.Js
  • Angular
  • TypeScript
  • Python
  • Ruby
  • Django
  • GoLang
  • ASP.NET core
  • XML
  • Express.js
JavaScript


function search_levoriclearn() {
let input = document.getElementById('search').value
input = input.toLowerCase();
let x = document.getElementsByClassName('ll-code-list');

for (i = 0; i < x.length; i++) {
if (!x[i].innerHTML.toLowerCase().includes(input)) {
x[i].style.display = "none";
}
else {
x[i].style.display = "list-item";
}
}
}


Build Your Own Webiste Or Make it yours Personalize it Quckly

Personalize It Your Way: We believe that your website should reflect your unique style and personality. That's why we provide a wide range of customization options, allowing you to tailor every aspect of your site to suit your preferences. From choosing fonts and colors to arranging layouts and sections, the possibilities are endless. Build Your Own Website: You can build any website you want right from the start with Levoric Learn. If you need a blog, portfolio, or a store, we have all the tools you need to deliver your vision. Quickly Customize Code: For that extra layer of control, Levoric Learn allows for customizing code in a fast and straightforward manner. Regardless of whether you're an experienced developer or just beginning, our platform provides the flexibility you need to allow you to create the website you want.


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Levoric Learn Demo</title>
</head>
<body>
<header>
<h1><!--content - LL---></h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</nav>
<main>
<h2><!--content - LL---></h2>
<p><!--content - LL---></p>
</main>
<footer>
<p>&©2024</p>
</footer>
</body>
</html>



<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1em 0;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: black;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>


Image 1 Image 2
Image 3 Image 4
Tutorials LL

Installation

npm install sax npm install githubname/reponame npm install @myorg/privatepackage npm install node-tap --save-dev npm install dtrace-provider --save-optional npm install readable-stream --save-exact npm install ansi-regex --save-bundle

copied!
Tutorials LL

Make it your own


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
h1 {
color: white;
font-size: 25px;
}
p {
color: white;
font-size: 25px;
}
</style>
<body>
<h1>Levoric Learn</h1>
<p>Build your responsive website by Utilizing this code</p>
</body>
</html>  

copied!
CSS3


.style-ll {
width: 100%;
height: 5vh;
margin: 25px;
margin-left: -0px;
outline: none
}

#search::-webkit-input-placeholder { 
color: rgb(20, 20, 44);
}
#search {
background-image: url('/LevoricLearn/search-llearn.png');
background-position: 12px 7px;
background-repeat: no-repeat;
margin-left: -0px;
border: 2px solid rgb(151, 176, 255);
border-radius: 30px;
margin-bottom: 12px;
padding: 12px 20px 12px 40px;
outline: none;
background-color: rgb(172, 180, 255)
}
#search:hover {
background-image: url('/LevoricLearn/search-llearn.png');
background-position: 12px 7px;
background-repeat: no-repeat;
margin-left: -0px;
border: 2px solid rgb(151, 176, 255);
border-radius: 30px;
margin-bottom: 12px;
padding: 12px 20px 12px 40px;
outline: none;
background-color: rgb(172, 180, 255)
}
#search:active {
background-image: url('/LevoricLearn/search-llearn.png');
background-position: 12px 7px;
background-repeat: no-repeat;
margin-left: -0px;
border: 2px solid rgb(151, 176, 255);
border-radius: 30px;
margin-bottom: 12px;
padding: 12px 20px 12px 40px;
outline: none;
background-color: rgb(172, 180, 255)
}
#ll-code-item-list {
list-style: none;
margin-left: -40px;
}
.ll-code-list {
border: 1px solid rgb(57, 99, 252);
border-radius: 5px;
padding: 5px;
margin: 10px;
}
  

copied!
HTML5


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
<input id="search" onkeyup="search_levoriclearn()" type="text"name="search" placeholder="L.L.">
<ul id="ll-code-item-list">
<li class="ll-code-list">HTML3</li>
<li class="ll-code-list">CSS3</li>
<li class="ll-code-list">JavaScript</li>
<li class="ll-code-list">React</li>
<li class="ll-code-list">Node.Js</li>
<li class="ll-code-list">Angular</li>
<li class="ll-code-list">TypeScript</li>
<li class="ll-code-list">Python</li>
<li class="ll-code-list">Ruby</li>
<li class="ll-code-list">Django</li>
<li class="ll-code-list">GoLang</li>
<li class="ll-code-list">ASP.NET core</li>
<li class="ll-code-list">XML</li>
<li class="ll-code-list">Express.js</li>
</ul>
</div>
</body>
</html>


copied!