Header 2

https://bbbootstrap.com/snippets/e-commerce-menu-header-using-html-css-21940848 <link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script> <div class="super_container"> <!-- Header --> <header class="header"> <!-- Top Bar --> <div class="top_bar">…

0 Comments

Header 1

https://epicbootstrap.com/snippets/header-blue <link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,…

0 Comments

MainActivity.java intro in android studio

A. MainActivity.java package com.example.myfirstandroidapp; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } } onCreate function is loading during open…

0 Comments

Custom helper in laravel

Friends, helper function is a function that we can apply globally in Laravel, meaning if we want a function that we want to apply in the entire Laravel website, then…

0 Comments

Components in laravel

Friends, components are very important in any website. If you have read any reactjs or angular type library or framework, then you will know what are components or models. The…

0 Comments

Form Validator in laravel

Forms are very important in any website. Without a form validator, the user cannot understand which data is mandatory to fill in it and which is optional. Also, many times…

0 Comments