Read CSS on iPhone
I copied an HTML code with CSS and everything works perfectly fine on all my computer browsers, but when I want to open both files on my iPhone I can't read the CSS file and so, the HTML fine doesn't apply the css code. Is that normal? How can I fix it? The code comes from a YouTube tutorial: IT'S NOT MY CODE I just liked the tutorial and decided to copy the code (https://www.youtube.com/watch?v=sJcAgWkjMt4&list=PLyq9LGyObwbQuWKtyh37rqAwUYfTHSewI&index=11&t=1s). This is the HTML code: (I only modified one icon that works well on the computer browser) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Neumorphic Radio Buttons</title> <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <p>Are these buttons cOoL?</p> <div> <label> <input type="radio" name="cool"> <i class="fa fa-heart" aria-hidden="true"></i> </label> <label> <input type="radio" name="cool"> <i class="fa fa-times" aria-hidden="true"></i> </label> </div> </div> </body> </html> CSS code below as it does not fit here.