HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

Recent content by Jim_Wick

  1. J

    Video pop up code

    Hi, I will help you with code and make changes accordingly in HTML, CSS,JS HTML:- <div class="container"> <div class="row"> <div class="col-sm-12"> <h1 class="text-center display-4 mt-5"> Web Design & Content Management Software </h1> <p class="text-center mt-5"> <a href="#headerPopup"...
  2. J

    Audio is not playing in html

    I saw your code, You can try this.. it will work.. Add '..' to goto previous directory if you have kept it in some directory and also in your code use type="audio/mpeg" <body> <li> <audio controls> <source src="../songs/Remember-The-Name.mp3" type="audio/mpeg">...
  3. J

    How to limit image size and set maximum height and width that fits the screen size?

    Hi, I got your issue.. Let me try to help you out with this.. You can try changing CSS as shown below.. position: absolute; width: 100%; height: 100%; overflow: hidden; This will help any of your images to fit in your screen size.. Hope this help, Regards, Jim W
  4. J

    Tips of Content Marketing

    Some of the main points to be remembered while doing content marketing such as : - Make sure your content has a clear business goal. - Know your targeted audience. - Keep content consistent and up-to-date. - Ensure your brand voice remains steady across channels. - Prioritize the user...
  5. J

    width: 100%; not taking up 100% of the width my screen?

    Hi, I was facing this issue when I was making a website for me, The problem was solved when I made changes in body tag.. ................... body { margin: 0; padding: 0; } .................... Try this, it will surely sort out your issue.. Greetings, Jim.Wick
Back
Top