Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS file not loading when using WAMP server

WAMP server loading index.html just fine but not loading any additional css style sheets and script files.

I've tried these

<link rel="stylesheet" href="wamp/www/AngularJS_Practice/css/style.css"/>
<link rel="stylesheet" href="/css/style.css"/>
<link rel="stylesheet" href="css/style.css"/>

edit

My current index.html page is

<!DOCTYPE HTML>
<html lang='en'>
<head>

<title>Electronic Components</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">

</head>
<body>
<h2>Lorem Ipsum</h2>


</body>
</html>

edit 2 css

h2 {

color: orange;
font-style: italic;

 }
like image 428
Brook Mesfin Avatar asked Feb 22 '26 20:02

Brook Mesfin


1 Answers

Refresh your browser cache. Press 'Ctrl+F5' That'll do the trick.

like image 108
Muneeb Avatar answered Feb 24 '26 12:02

Muneeb