UniqKing
UniqKing
  • Видео 71
  • Просмотров 8 127
CSS Download Icon | CSS Icons Tutorial
In this video, I Explained you about how you can create a simple download icon using CSS
Stay tuned for more videos
Thank You
Timestamps:
0:00 Intro
0:11 Concept
1:48 HTML
3:11 CSS
Просмотров: 98

Видео

Image Gallery Using Flex | CSS Image Gallery
Просмотров 682 месяца назад
In this video, I explained you about how to create a image gallery using CSS Stay tuned for more videos Thank You Timestamps: 0:00 Intro 0:33 HTML 2:24 CSS 4:28 Concept 5:10 CSS continue
Flex Basis | CSS Flexbox Tutorial
Просмотров 852 месяца назад
In this video, I Explained about the flex basis in CSS Stay tuned for more videos Thank You Timestamps: 0:00 Intro 0:38 Code 2:12 flex intro 2:33 flex axes 4:16 two terms 7:48 flex wrap 10:28 flex grow,shrink 12:17 simple task
Light And Dark Mode Toggle Button | HTML, CSS, JS With Explanation
Просмотров 1013 месяца назад
In this video, I Explained you about how you can create the Toggle Button to swap the light mode and dark mode using HTML, CSS and Javascript Stay tuned for more videos Thank You Timestamps: 0:00 Intro 0:30 HTML 2:10 CSS 13:31 JS
Bulb ON OFF Using HTML And JS | With Explanation
Просмотров 394 месяца назад
Hello Everyone, In this video, I Explained you about how you can click to turn off and on bulb using html and javascript Stay tuned for more videos Thank You
Image Map In HTML | HTML Image Mapping | HTML Tutorial
Просмотров 354 месяца назад
In this video, I Explained you about the image mapping in html Stay tuned for more videos Thank You
Stopwatch | HTML CSS JS Tutorial | With Explanation
Просмотров 705 месяцев назад
Stopwatch | HTML CSS JS Tutorial | With Explanation
Difference Between let var const | javascript basics
Просмотров 396 месяцев назад
Difference Between let var const | javascript basics
Password Bar | HTML CSS JS Tutorial | With Explanation
Просмотров 2116 месяцев назад
Password Bar | HTML CSS JS Tutorial | With Explanation
Digital Clock | HTML, CSS , Javascript | With Explanation
Просмотров 846 месяцев назад
Digital Clock | HTML, CSS , Javascript | With Explanation
How To Make Calculator In HTML, Javascript | No CSS | With Explanation
Просмотров 796 месяцев назад
How To Make Calculator In HTML, Javascript | No CSS | With Explanation
Navigation Bar | Simple Navbar | HTML CSS With Explanation #html #css
Просмотров 378 месяцев назад
Navigation Bar | Simple Navbar | HTML CSS With Explanation #html #css
Remove & Replace Image Background Quickly with Explanation | Without Any Software
Просмотров 148 месяцев назад
Remove & Replace Image Background Quickly with Explanation | Without Any Software
Image Border Color Changing With Explanation | HTML CSS Javascript #html #javascript
Просмотров 469 месяцев назад
Image Border Color Changing With Explanation | HTML CSS Javascript #html #javascript
Create Simple Animation In Notepad | HTML tutorial
Просмотров 2310 месяцев назад
Create Simple Animation In Notepad | HTML tutorial
HTML Basics | HTML tutorial | Basic tags in HTML #html
Просмотров 6111 месяцев назад
HTML Basics | HTML tutorial | Basic tags in HTML #html
Remove Background in 1 Click | GIMP Tutorial #gimp
Просмотров 2411 месяцев назад
Remove Background in 1 Click | GIMP Tutorial #gimp
Image Editing Basics | GIMP tutorial #gimptutorial
Просмотров 3911 месяцев назад
Image Editing Basics | GIMP tutorial #gimptutorial
Car Animation | Car Coding Animation using html and css | html and css tutorial #css #html
Просмотров 3411 месяцев назад
Car Animation | Car Coding Animation using html and css | html and css tutorial #css #html
Create Animals Audio Website | Web Development Using html | Creating a Website Using html
Просмотров 21Год назад
Create Animals Audio Website | Web Development Using html | Creating a Website Using html
Top Python Tricks | Programming In Python | Tips and Tricks
Просмотров 46Год назад
Top Python Tricks | Programming In Python | Tips and Tricks
Insert An Image In Webpage Using HTML
Просмотров 28Год назад
Insert An Image In Webpage Using HTML
FREE_PDF_EDITING_WEBSITE
Просмотров 60Год назад
FREE_PDF_EDITING_WEBSITE
Animate Your Voice Easily For Free
Просмотров 31Год назад
Animate Your Voice Easily For Free
Top Websites For Coding Practice
Просмотров 20Год назад
Top Websites For Coding Practice

Комментарии

  • @Jai-gt6hj
    @Jai-gt6hj 8 дней назад

    Thanks

    • @_UK503
      @_UK503 8 дней назад

      No problem! Thanks for watching!

  • @SenseiArima11
    @SenseiArima11 3 месяца назад

    Bro in the relative box, if you do left:100% then the relative box will move exactly just out of its parent box but shouldn't it move 100% to its own position rather then it's parent, explain pls

    • @_UK503
      @_UK503 3 месяца назад

      Thanks for your comment, When you give position :relative to an element and left: 100% the movement calculated based on containing block(parent) not the element itself. left 100% means move to left 100% of containing block's width. It does not move by its own width because % refers to width of parent not the child itself. For example: if the child has left 100% and has a parent's width :200px then child will move 100% of 200 which is 200px to right

    • @SenseiArima11
      @SenseiArima11 3 месяца назад

      @@_UK503 yes thanks for answer👍, I also found that out from mdn, stupid chatgpt and copilot ai were saying that it depends on element position and not parent position

  • @maxmuster7003
    @maxmuster7003 5 месяцев назад

    Is there a command for changing the RGB components of a color, example to get a darker green color?

    • @_UK503
      @_UK503 4 месяца назад

      Thanks for your comment You can type color A to change to text color to green Also you type color A7 to change the background color to green which is white text color over green background

    • @maxmuster7003
      @maxmuster7003 4 месяца назад

      @@_UK503 Yes, but i mean the red, green and blue component of each color. Like in the Windows color menu, but with a special CMD command to change. The following table is for colors in textmode of ibm compatible mainboard BIOS and of MS DOS. REM ;------------------------------------------------ REM ; color components default values red green blue REM ;------------------------------------------------ REM 0 black 00 00 00 REM 1 blue 00 00 2A REM 2 green 00 2A 00 REM 3 cyan 00 2A 2A REM 4 red 2A 00 00 REM 5 magenta 2A 00 2A REM 6 brown 2A 2A 00 REM 7 light grey 2A 2A 2A REM 8 grey 00 00 15 REM 9 light blue 00 00 3F REM A light green 00 2A 15 REM B light cyan 00 2A 3F REM C light red 2A 00 15 REM D pink 2A 00 3F REM E yellow 2A 2A 15 REM F white 2A 2A 3F REM ;------------------------------------------------

    • @maxmuster7003
      @maxmuster7003 4 месяца назад

      @@_UK503 In MS DOS i can change the color number 2 dark green from 00 2A 00 rgb to a darker green 00 12 00 rgb.

  • @darshan732
    @darshan732 5 месяцев назад

    use clip path property it will be much easier

  • @demo-yk7mj
    @demo-yk7mj 8 месяцев назад

    It's really helpful ❤ Keep posting content like this

  • @lakshita.p.sharma4517
    @lakshita.p.sharma4517 9 месяцев назад

    thank you so much for this useful video, also how can make fish jump to the bottom.