1
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Cadyrov 2022-10-18 20:02:10 +10:00
parent 75d84f7278
commit 10f0f6a2c0
3 changed files with 17 additions and 10 deletions

View File

@ -2,7 +2,7 @@
<html lang="ru"> <html lang="ru">
<head> <head>
<link rel="stylesheet" href="styles/style.css" type="text/css" /> <link rel="stylesheet" href="styles/style.css" type="text/css">
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Двач но не двач</title> <title>Двач но не двач</title>
</head> </head>
@ -47,12 +47,12 @@
<div class="message_img"></div> <div class="message_img"></div>
<p class="messagecontent">ВСЕМ ПРИВЕТ! Я ФОКУСНИК!</p> <p class="messagecontent">ВСЕМ ПРИВЕТ! Я ФОКУСНИК!</p>
</div> </div>
<div class="messagewraper"> <form class="messagewraper" method="post" action="http://api.vdk2ch.ru:5000/PostTo/">
<textarea class="textplace" name="messagetext" id="messagetext" cols="30" rows="10"></textarea> <input type="text" class="textplace" name="messagetext" id="messagetext" cols="30" rows="10"></input>
<input class="button" type="submit" for="messagetext"> <input class="button" type="submit" for="messagetext" value="SEND">
</div> </form>
<div class="posts"><p>ловим текст сюда</p></div>
</div> </div>
<script src="script/js.js"></script> <script src="script/js.js"></script>
</body> </body>
</html> </html>

View File

@ -1,2 +0,0 @@
console.log('wrok');
let infinite=5;

View File

@ -59,6 +59,7 @@ margin-left: auto;
margin-right: auto; margin-right: auto;
margin-top: 10px; margin-top: 10px;
display: flex; display: flex;
margin-bottom: 10px;
} }
.button {width: 150px; .button {width: 150px;
@ -84,7 +85,7 @@ h1 {
background-color: #afacac; background-color: #afacac;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
padding-bottom: 20px;
} }
.ugly { .ugly {
display: block; display: block;
@ -122,4 +123,12 @@ ul {
line-height: 20px; line-height: 20px;
font-weight: 600; font-weight: 600;
} }
.posts {
width: 500px;
padding-top: 20px;
padding-bottom: 20px;
background-color: hotpink;
margin-left: auto;
margin-right: auto;
text-align: center;
}