12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>hm_js/1</title>
- <link rel="stylesheet" href="css/style.css">
- </head>
- <body>
- <div class="form">
- <!-- Присваевем элементам атрибут id с именами или ключами чтобы можно было получить к нему доступ через document.getElementById(id) -->
- <input type="text" placeholder="login" id="login" />
- <input type="password" placeholder="password" id="pasworld" />
- <!-- Пощелчку на кнопку срабатывает событие onklick и идёт вызов функции submit -->
- <input type="button" value="login" onclick="submit()" />
- </div>
-
- <script src="js/main.js"></script>
- <body>
- </html>
|