|
console.log('hola');
|
|
window.onload = function() {
|
|
// document.body = '<img src="" alt="" srcset="">';
|
|
let img = document.createElement('img');
|
|
img.src = '../../images/_DSC5302.jpg';
|
|
let src = document.getElementById('header');
|
|
src.appendChild(img);
|
|
};
|