skip to Main Content

Html – media query js not apply when resizing width screen and click the link

So this is my code const mediaQ = window.matchMedia("(max-width:500px)") mediaQ.addEventListener("change", function(){ if(mediaQ.matches){ document.getElementById("box").style.backgroundColor = "blue" } else{ document.getElementById("box").style.backgroundColor = "red" } }) #box{ height: 20rem; width: 20rem; background-color: red; } <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,…

VIEW QUESTION

Html – When clicked on Font Amesome icon, the hyperlink doesn't work

The website is https://alloutcreative.com/ This is the code: <div class="mil-team-card mil-up mil-mb-30"> <img src="img/faces/Eugen.jpg" alt="Team member"> <div class="mil-description"> <div class="mil-secrc-text"> <h5 class="mil-muted mil-mb-5">Eugen Kelemen</a></h5> <p class="mil-link mil-light-soft mil-mb-10">Founder, CEO, Videography, Photography, Visual Effects</p> <ul class="mil-social-icons mil-center"> <li><a href="https://www.instagram.com/eugen.jk/" target="_blank" class="social-icon">…

VIEW QUESTION
Back To Top
Search