input
This commit is contained in:
parent
bbd9b067c8
commit
5f7b067d15
39
index.html
39
index.html
@ -1,17 +1,32 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="ru">
|
<html lang="ru">
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" href="styles/style.css" type="text/css"/>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<link rel="stylesheet" href="styles/style.css" type="text/css" />
|
||||||
<title>Двач но не двач</title>
|
<meta charset="UTF-8">
|
||||||
</head>
|
<title>Двач но не двач</title>
|
||||||
<body>
|
</head>
|
||||||
<div class="hello"><p class="hellotext">Добро пожаловать, снова!</p></div>
|
|
||||||
<div class="message"><p class="messagecontent">Пример текста сообщения, текст</p></div>
|
<body>
|
||||||
|
<div class="main-wrapper">
|
||||||
|
<div class="hello">
|
||||||
|
<p class="hellotext">Добро пожаловать, снова!</p>
|
||||||
|
</div>
|
||||||
|
<div class="message">
|
||||||
|
<p class="messagecontent">Пример текста сообщения, текст</p>
|
||||||
|
</div>
|
||||||
<div class="messagewraper">
|
<div class="messagewraper">
|
||||||
<textarea class="textplace" name="messagetext" id="messagetext" cols="30" rows="10"></textarea>
|
<textarea class="textplace" name="messagetext" id="messagetext" cols="30" rows="10"></textarea>
|
||||||
<input class="button" type="submit" for="messagetext">
|
<input class="button" type="submit" for="messagetext">
|
||||||
|
</div>
|
||||||
|
<div class="sql">
|
||||||
|
<form>
|
||||||
|
<input type="text" id="forviktor">
|
||||||
|
<button type="submit" for="forviktor">SEND</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="script/js.js"></script>
|
<script src="script/js.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
25
script/js.js
25
script/js.js
@ -1,11 +1,18 @@
|
|||||||
alert ('gtfo');
|
|
||||||
let c=10;
|
|
||||||
let i=0
|
|
||||||
while (true&&c<1000000000) {
|
|
||||||
c=2*c*c;
|
|
||||||
console.log(c);
|
|
||||||
i=i+1;
|
|
||||||
if (i%7) {alert(c)}
|
|
||||||
}
|
|
||||||
console.log('huynya');
|
console.log('huynya');
|
||||||
console.log(4+9);
|
console.log(4+9);
|
||||||
|
let switchBackground = 0;
|
||||||
|
// 16777215
|
||||||
|
// while (true) {
|
||||||
|
// document.querySelector('.main-wrapper').style.backgroundColor='#'+switchBackground.toString(16);
|
||||||
|
// switchBackground+=100;
|
||||||
|
// console.log(switchBackground)
|
||||||
|
// if (switchBackground >=16777215) { switchBackground = 0 }
|
||||||
|
// console.log(document.querySelector('.main-wrapper').style.backgroundColor)
|
||||||
|
// setTimeout(
|
||||||
|
// () => {
|
||||||
|
// console.log(document.querySelector('.main-wrapper').style.backgroundColor)
|
||||||
|
// },
|
||||||
|
// 3000
|
||||||
|
// );
|
||||||
|
|
||||||
|
// }
|
||||||
|
@ -48,3 +48,10 @@ h1 {
|
|||||||
.button:hover {
|
.button:hover {
|
||||||
background-color: blue;
|
background-color: blue;
|
||||||
}
|
}
|
||||||
|
.main-wrapper {
|
||||||
|
width: 700px;
|
||||||
|
background-color: #afacac;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user