Category: General

How to Create a CSS Button in HTML?

In this article, I will show how to create a impressive button by using a simple css. Create a file button.html and write the below code. <style> a, a:active, a:hover, a:visited { text-decoration: none; text-decoration-line: none; text-decoration-style: initial; text-decoration-color: initial; } .mybutton { border-radius: .25rem; background-color: #008400; color: #FFFFFF; display: block; margin-bottom: 3rem; margin-left: auto;

HTML CLeaner

There are many occations where you get a piece of html code and you want to clean the html to get the desired text content. For example, if you want to list a menu in word document from a website site, you can just copy the html and paste it in a html cleaner service and

Laravel Basics | Installation to basic website

Welcome to the most practical and easy step by step information on how to install laravel in your computer. First of all, Install Composer if you have not installed it yet. Install WAMP c:\wamp64\www>composer create-project laravel/laravel helloworld Views (C:\wamp64\www\helloworld\resources\views) C:\wamp64\www\helloworld\resources\views\hi.blade.php Routes (C:\wamp64\www\helloworld\routes) C:\wamp64\www\helloworld\routes\web.php Route::get(‘hii’, function () { return view(‘hi’); }); Create a new template file in