Skip to content
View huzaifaasim017's full-sized avatar
💻
koding
💻
koding

Block or report huzaifaasim017

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. This code will add a darkmode class ... This code will add a darkmode class on darkmode turned on with the local storage, and will change the darkmode image using the the data attribute.
    1
    <!-- Button HTML  -->
    2
    <div class="darkmode d-flex">
    3
        <p class="my-auto">Darkmode: </p>
    4
        <div class="form-check form-switch ms-2 transform-icon">
    5
            <input data-text="Turn on or off dark mode" class="darkModeButton form-check-input shadow-none" type="checkbox" role="switch">
  2. Laravel 404 Route for Custom View Laravel 404 Route for Custom View
    1
    Route::fallback(function () {
    2
        $view = 'errors.404';
    3
        return view($view);
    4
    });
    5
    
                  
  3. Basic structure of default status ac... Basic structure of default status active or in active.
    1
    {
    2
        "default": "1",
    3
        "options": {
    4
            "0": "In Active",
    5
            "1": "Active"
  4. This will ellipse the text means if ... This will ellipse the text means if there are {n} no. lines and you want after that my text should not be overflow instead of that it should be three dots. (For Example: This is the paragraph and the length of it more than my expectat...)
    1
    // This is for single line
    2
    .text-ellipsis {
    3
        white-space: nowrap;
    4
        overflow: hidden;
    5
        text-overflow: ellipsis;
  5. To change the iPhone Status bar color. To change the iPhone Status bar color.
    1
    <meta name="theme-color" content="#92C142">
  6. A Modern good looking and trending b... A Modern good looking and trending button or link design on hover that make a background color on the text with the smooth cubic animation.
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    <head>
    4
        <meta charset="UTF-8">
    5
        <meta name="viewport" content="width=device-width, initial-scale=1.0">