This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<iframe src="https://money.yandex.ru/quickpay/shop-widget?writer=buyer&targets=%D0%94%D0%BE%D0%BD%D0%B0%D1%82&targets-hint=&default-sum=2.00&button-text=14&hint=&successURL=&quickpay=shop&account=НОМЕР_ВАШЕЙ_КАРТЫ" width="423" height="215" frameborder="0" allowtransparency="true" scrolling="no"></iframe> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Кликер</title> | |
<link rel="stylesheet" href="./style.css"> | |
<link rel="icon" href="img/mouse.png"> | |
</head> | |
<body> | |
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alert("Правила: копите деньги и прокачиваетесь, в минус можно уходить до -100, далее вы проиграете!") | |
var score = 0; | |
updating = 1; | |
function clickBtn() { | |
score = score + updating; | |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; | |
} | |
function update() { | |
score = score - 100; | |
document.getElementsByTagName("h1")[0].firstChild.data = score + "$"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background-image: url(https://vsevolodhtml.ru/assets/img/bg-intro-desktop.png); | |
background-attachment: fixed; | |
} | |
h2 { | |
font-family: 'Pangolin', cursive; | |
} | |
button { | |
background: linear-gradient(to bottom,rgba(120, 107, 175, .5), rgba(40, 140, 255,.3)), url(https://madeas.ru/wp-content/uploads/2018/08/bg-art_26-300x300.jpg); | |
background-color: transparent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Виселица!</title> | |
</head> | |
<body> | |
<h1>Виселица!</h1> | |
<script> | |
//список слов | |
var words = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta charset="utf-8"> | |
<link rel="icon" href="favicon.ico"> | |
<style> | |
html { | |
background-color: darkblue; | |
} | |
textarea { | |
float: left; | |
width: 50%; | |
max-width: 50%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import telebot, random | |
bot = telebot.TeleBot('!!!you_token!!!') | |
@bot.message_handler(content_types=['text']) | |
def get_text_messages(message): | |
if message.text == "/help": | |
phrases = [ | |
'Нужна помощь? У меня её нет =)', | |
'Сожалею, но не помогу...', | |
'Хахахахахахахаха... Зачем тебе моя помощь?' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#импортируем библиотеки | |
import telebot, random | |
#записываем токен | |
bot = telebot.TeleBot('$$$$$$$$$$$$$$$$$$$$$$$$$$$') | |
#настраиваем бота | |
@bot.message_handler(content_types=['text']) | |
#создаём главную функцию | |
def get_text_messages(message): | |
#проверяем текст клиента для ответа |