Hello my question is simple. I want link to multiple css stylesheets from my html but when i list the stylesheets only the last two links are being shown in my browser. All of the links, css work individually. But when i link all 5 from my html only the last two links work.
<head>
<title></title>
<meta charset="UTF-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="(max-width: 319px)" href="css/minimum.css">
<link rel="stylesheet" media="(max-width: 480px)" href="css/smartphone-max.css">
<link rel="stylesheet" media="(min-width: 320px)" href="css/smartphone-min.css">
<link rel="stylesheet" media="(max-width: 1024px)" href="css/ipads-max.css">
<link rel="stylesheet" media="(min-width: 768px)" href="css/ipads-min.css">
</head>