Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Прогромирование на html

Саша Глызин Знаток (258), на голосовании 3 месяца назад
<style>
body {
background-color: powderblue;
font-size: 30px;
text-align: center;
}
#button {
width: 200px;
height: 200px;
background-color: blue;
border-radius: 100px;
margin: 0 auto;
line-height: 200px;
user-select: none;
margin-top: 100px;
}
#score {
margin-top: 50px;
font-size: 60px;
font-weight: bold;
color: green;
}
</style>
<div id="score">0</div>
<div id="button">ЩАУРМА</div>
<script>
let counter = 0;

document.getElementById('button').onclick = () => {
counter = counter + 1;
document.getElementById('score').innerText = counter;
};

почему не кликается пожалуйста помогите я только начал программировать где ошибка??
Голосование за лучший ответ
Георгий Крезентон Мастер (1612) 4 месяца назад
Html это разметка страницы а не программирование
Gamer HD v 3.0 Гуру (4083) 4 месяца назад
<style>
body {
background-color: powderblue;
font-size: 30px;
text-align: center;
}
#button {
width: 200px;
height: 200px;
background-color: blue;
border-radius: 100px;
margin: 0 auto;
line-height: 200px;
user-select: none;
margin-top: 100px;
}
#score {
margin-top: 50px;
font-size: 60px;
font-weight: bold;
color: green;
}
</style>
<div id="score">0</div>
<div id="button"><a href="">ЩАУРМА</a></div>
<script>
let counter = 0;

document.getElementById('button').onclick = () => {
counter = counter + 1;
document.getElementById('score').innerText = counter;
};
Оракул (50000) 4 месяца назад

V̲i̲s̲t̲a̲s̲t̲e̲r̲ Искусственный Интеллект (263840) 4 месяца назад
у тебя скрипт не закрытый..
Оракул (50000) 4 месяца назад
 можешь помочь❓ 
есть карточная игра косынка

я стянул с того сайта код,
файлы
но
не играется

вот архив zip
https://cloud.mail.ru/public/nohU/AJXn7m1RF

а это
сайт где игра онлайн
с
него
стянул
https://g.vseigru.net/11/igra-kosynka-klondajk/
Похожие вопросы