123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Pavlov_Maik_FSA3</title>
- <link rel="stylesheet" href="css/clean.css">
- <link rel="stylesheet" href="css/style.css">
- </head>
- <body>
- <div class="send">
- <div class="inp">
- <b>User name :</b>
- <input type="text" class="user-name">
- </div>
- <section class="chat"></section>
- <div class="inp">
- <b>Massage :</b>
- <input type="text" class="user-massege">
- <button class="send-massege">SHOUT OUT</button>
- </div>
- </div>
- <script src="script/script.js"></script>
- </body>
- </html>
|