Online Video Downloader
body {
background:#aba;
margin:0;
padding:20px 10px;
text-align:center;
font:x-small/1.5em "Trebuchet MS",Verdana,Arial,Sans-serif;
color:#333;
font-size/* */:/**/small;
font-size: /**/small;
let inputText = prompt("Please enter some text:");
if (inputText !== null) {
alert("You entered: " + inputText);
}
{
let img = new Image();
img.src = "path/to/image.jpg";}
{
let imgContainer = document.getElementById("image-container");
imgContainer.appendChild(img);}
{
let textBox = document.getElementById("text-box");
textBox.value = "Hello, world!";}
{
let head = document.head;
// Create a new element
let meta = document.createElement("meta");
meta.setAttribute("name", "viewport");
meta.setAttribute("content", "width=device-width, initial-scale=1.0");
// Add the new element to the
head.appendChild(meta);
// Change the title of the website
let title = document.querySelector("title");
title.textContent = "My New Title";}