Поэтому я пытаюсь заставить программу вызывать мою таблицу стилей для форматирования боковой панели HTML, но она не загружается должным образом.вот что у меня есть
addTime.html
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet"
href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<?!= include('stylesheet') ?>
</head>
<body>
<form id="addTimeForm">
...there is more to the script, it's not needed though
...
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<?!= include('javascript') ?>
----------------------------------------------------------------
javascript.html
<!DOCTYPE html>
<link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
<script>
window.addEventListener('load', function() {
console.log('Page is loaded');
});
</script>
Когда я запускаю сценарий, <?!= include('stylesheet') ?>
фактически появляется в поле html.Есть идеи?