برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام<!DOCTYPE html> <html lang="fa" dir="rtl"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>دکمه نئونی</title> </head> <style> a{ color: rgb(39, 118, 221); border: 2px solid rgb(39, 118, 221); border-radius: 10px; text-decoration: none; font-weight: bold; padding: 5px 30px 5px 30px; text-align: center; box-shadow: 0 0 5px rgb(39, 118, 221); text-shadow: 0 0 4px rgb(39, 118, 221); } a:hover{ background-color: rgb(39, 118, 221); color: white; transition: 0.5s; } </style> <body> <a href="#">متن شما</a> </body> </html>
CSS___________________ div { display: inline-block; padding: 1px 40px; border: 2px solid blue; color: blue; border-radius: 5px; user-select: none; transition:all .5s; } div:hover { background-color: blue; color: white; } HTML__________________ <div> ثبت نام </div>
<!DOCTYPE html> <html lang="fa"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>دکمه نئونی</title> <link rel="stylesheet" href="styles.css"> </head> <body> <button class="neon-button">تماس با ما</button> </body> </html>
<!DOCTYPE html> <html lang="fa"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>دکمه تغییر شکل</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .button { padding: 15px 30px; font-size: 16px; color: white; background-color: #007BFF; border: none; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; } .button:hover { background-color: #0056b3; transform: scale(1.1); border-radius: 20px; # Transformation } </style> </head> <body> <button class="button">دکمه</button> </body> </html>
<!DOCTYPE html> <html lang="fa"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> .container{ margin-top: 300px; } .btn{ background-color: white; color: #039be5; padding: 10px 60px 10px 60px; border-color: #039be5; border-radius: 9px; font-size: 20px; font-family: Arial, Helvetica, sans-serif; } .btn:hover{ background-color: #039be5; color: white; } </style> <title>neon button</title> </head> <body> <center> <div class="container"> <button class="btn">ثبت نام</button> </div> </center> </body> </html>
<button style="color:blue;">ثبت نام</button> <style> button::hover{ background_color:blue; color:#fff }
<!DOCTYPE html> <html lang="fa"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>دکمه تغییر شکل</title> <style> .button { padding: 15px 30px; background-color: #007BFF; color: white; border: none; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; font-size: 16px; } .button:hover { border-radius: 50%; background-color: #0056b3; padding: 15px; } </style> </head> <body> <button class="button">دکمه</button> </body> </html>
Submitting answers is currently unavailable.
1- The user selects a number from 0 to 100 in his mind 2- The program guesss the user's desired number 3- The user according to the guessing number is one of the options (the correct guess, the number is larger, the number ... Moore ...
Write a program that receives the square side length from the input and calculates its area of square area = a side of its own = a side of a power 2.
Write a program that prints paired numbers between 1 and 100
Write a function to get a string and return the length of the string Tip: In this exercise you should not use ready -made functions like Len in Python
Write a function that receives a list of numbers and generates 2 lists for pair and individual numbers and prints in the output example ([1,2,3,4]) Output: [1,3] [2,4] [2,4]
Create a list and display the following on the screen. Next to each item must be automatically placed.
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.