<html>
<body>
заголовок документа
<br>
<input type="text" id="mytitle" value="заголовок документа">
<br>
фон страницы
<br>
<input type="text" id="mybgcolor" value="#ff00ff">
<br>
текст страницы
<br>
<input type="text" id="mybody" value="текст по умолчанию">
<br>
<br>
<input type="button" value="Создать страничку" onclick="createPage()">
<br>
<br>
<textarea id="mytextarea" rows="10" cols="50"></textarea>
<script>
function createPage(){
let mytitle = document.getElementById("mytitle").value;
let mybgcolor = document.getElementById("mybgcolor").value;
let mybody = document.getElementById("mybody").value;
let texthtml ="<html>"+"\n";
texthtml += "<head>"+"\n" +"<title>"+ mytitle +"</title>"+"\n" +"</head>";
texthtml += "\n"+"<body "+"bgcolor="+'"'+mybgcolor+'"'+">"+"\n";
texthtml += mybody+ "\n"+"</body>";
texthtml +="\n"+"</html>;
}
</script>
</body>
|