Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexG2024 authored Aug 14, 2024
1 parent 5fca897 commit 98645aa
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Черно-Оранжевый Интерфейс с Игрой</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Добро пожаловать!</h1>
</header>
<main>
<button>Нажми меня</button>
<!DOCTYPE html>
<html>
<head>
<title>Угадай число</title>
<!-- Здесь добавлена ссылка на файл стилей -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Угадай число от 1 до 100</h1>
Expand Down Expand Up @@ -33,21 +45,6 @@ <h1>Угадай число от 1 до 100</h1>
</body>
</html>

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Черно-Оранжевый Интерфейс с Игрой</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Добро пожаловать!</h1>
</header>
<main>
<button>Нажми меня</button>
<!-- Здесь добавляется HTML-код игры "Угадай число" -->
<h1>Угадай число от 1 до 100</h1>
<input type="number" id="guess" min="1" max="100">
<button onclick="checkGuess()">Проверить</button>
Expand Down

0 comments on commit 98645aa

Please sign in to comment.