Responsive Car Website Design Using HTML CSS And JavaScript

Поделиться
HTML-код
  • Опубликовано: 10 янв 2025

Комментарии • 32

  • @OgunsanmiOluwaferanmi
    @OgunsanmiOluwaferanmi 5 дней назад +1

    Wow so amazing

  • @ajaybidon
    @ajaybidon 6 месяцев назад +2

    Awesome! i'm adding this to my project

    • @Bedimcode
      @Bedimcode  6 месяцев назад +1

      Great, greetings.

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

    keep up the good work

  • @gwolojulius4135
    @gwolojulius4135 6 месяцев назад +1

    Wow this is the best piece you have ever made. Oh my mentor great job!

  • @motivatedmomin
    @motivatedmomin 6 месяцев назад +1

    Very Nice pretty clean work done

    • @Bedimcode
      @Bedimcode  6 месяцев назад +1

      Thank's my friend regards.

  • @julianvelez6563
    @julianvelez6563 6 месяцев назад +1

    awesome work bro

    • @Bedimcode
      @Bedimcode  6 месяцев назад

      Thanks greetings.

  • @Ryanv44
    @Ryanv44 6 месяцев назад +1

    Amazing ❤

  • @cami_fdez8467
    @cami_fdez8467 6 месяцев назад

    Really nice!

  • @RACE_OFF24
    @RACE_OFF24 6 месяцев назад +2

    nice work bro can you give detailed roadmap of web development

    • @Bedimcode
      @Bedimcode  6 месяцев назад

      Thanks friend, I'm sharing a website for the web developer's path, greetings.
      roadmap.sh/frontend

  • @glennwarindu4580
    @glennwarindu4580 4 месяца назад +2

    I love the structure off all your pojects and I'm really learning alot ,but I have one problem,unfortunately the javascript part does not seem to work on my windows device,not only in this tutorial but more than three

  • @mr.fabian8471
    @mr.fabian8471 6 месяцев назад

    Thanks!!

  • @hariprasatht9082
    @hariprasatht9082 6 месяцев назад

    💥👌

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

    Do you have tutorial for checkout page? Including responsive payment integration using paypal and credit card? I really want to build website for real check out.
    Also,I would like to have video tutorial about subscription page and the checkout page?

  • @ilianavall
    @ilianavall 2 месяца назад

    Hey i wanted to ask if i buy it is the site already done or i have all the images and to follow the the tutorial to make it ?

    • @Bedimcode
      @Bedimcode  2 месяца назад

      When you buy it, the project is already developed with images and all the resources.

  • @PainduPets
    @PainduPets Месяц назад

    Please Make a project By using HTML CSS and PHP

  • @RahafTarek-ft4ql
    @RahafTarek-ft4ql 6 месяцев назад +1

    I have a problem the: Discover More 302 MPH 0 - 100 KM/H 360 KW doesn't show.

    • @Bedimcode
      @Bedimcode  6 месяцев назад +1

      It's because the body color is white, that's why it doesn't appear. If you inspect elements and select the body you can uncheck the white color.
      But I suggest you keep developing the project as you advance all the elements appear, greetings.

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

    hello i keep getting this error when trying to get swiper to work : 'Uncaught ReferenceError: Swiper is not defined' ive followed every step of the video but its not working, please i need help

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

      *You must first export the swiper css and swiper js files
      * You must keep in mind that each tag must have the swiper class

      * Here I share the swiper js code
      const swiperHome = new Swiper('.home__swiper', {
      speed: 1200,
      effect: 'fade',
      pagination: {
      el: '.swiper-pagination',
      clickable: true,
      renderBullet: (index, className) => {
      return '' + String(index + 1).padStart(2, '0') + ""
      },
      },
      })

  • @SaniyaKhan-wg1dl
    @SaniyaKhan-wg1dl 2 месяца назад

    I have written js code correctly but it's not working why plz help

    • @Bedimcode
      @Bedimcode  2 месяца назад

      In what part of javascript can I help you?

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

    hello im having a problem the background-color: var(--color-car); isnt working for me, cant seem to understand where i went wrong

    • @Bedimcode
      @Bedimcode  4 месяца назад +1

      /*=============== REUSABLE CSS CLASSES ===============*/
      .car__orange {
      --color-car: var(--orange-color);
      }
      .car__green {
      --color-car: var(--green-color);
      }
      .car__blue {
      --color-car: var(--blue-color);
      }
      The class of each color is inserted in the article tag.

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

      @@Bedimcode thank you very much! this helped