WAMP サーバーが index.html を正常にロードしていますが、追加の css スタイル シートとスクリプト ファイルをロードしていません。
私はこれらを試しました
<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"/>
編集
私の現在のindex.htmlページは
<!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>
2つのCSSを編集
h2 {
color: orange;
font-style: italic;
}