Проект был сделан, соответственно залит на хост, и дана ссылка заказчику.Заливать надо на свой хост - у нормального фрилансера должна быть своя инфраструктура для демонстрации.
foo.onclick = function(){
this.classList.toggle('rotate')
}
CSS:img {
transition: transform 1s ease;
}
.rotate {
transform: rotate(180deg);
}
includeHTML - Loading HTML parts via HTML tag (pure js)
Supported protocols: http://, https://, file:///
Supported browsers: IE 9+, FF, Chrome (and may be other)
<include src="header.html"></include>
<html>
<head>
<script src="jquery.js"></script>
<script>
$(function(){
$("#includedContent").load("b.html");
});
</script>
</head>
<body>
<div id="includedContent"></div>
</body>
</html>