Ga direct naar inhoud

Bedankt voor je sollicitatie

Je kunt je sollicitatie afronden door een videosollicitatie op te nemen :)

fetch('https://api.giphy.com/v1/gifs/random?api_key=IddPc6Zks6YvXT3zUPwBIkx4JimcjDWs&tag=thumbs-up&rating=g&lang=nl') .then(response => response.json()) .then(data => { const img = document.createElement('img'); img.src = data.data.images.downsized_large.url; img.alt = 'Thumbs Up GIF'; img.style.maxWidth = '100%'; document.getElementById('giphy-thanks').appendChild(img); });