برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام#mybox {color: green;}
<!DOCTYPE html> <html dir="rtl"> <head> <meta charset="UTF-8"> <meta name="viewport"content="width=device.width, initial-scale=1.0"> <title> رنگ</title> </head> <style> div{ color: green } </style> <body> <div id='mybox'>code-bezan.ir</div> </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> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="my-div"> <p>این یک متن درون div است.</p> <p>متن دیگری در اینجا وجود دارد.</p> </div> </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> #mybox { color: green; # Change the color of the text to the green } </style> </head> <body> <div id='mybox'>code-bezan.ir</div> </body> </html>
<!DOCTYPE html>
<html>
<head>
<style>
#mybox{
color:green;
}
</style>
</head>
<body>
<div id='mybox'>code-bezan.ir</div>
</body>
</html>
#mybox{ color: rgb(14,185,14); }
Submitting answers is currently unavailable.
Design the database of a restaurant and write a query about making tables and keys. Tips: In this restaurant we want to have a list of foods, orders and customers in the system
Write a program that translates the following words from Farsi to English and vice versa. The program must be implemented infinitely and it is possible to add new words easily words: Hello = hello goodbye = bye Kata ...
Write a program that prints each student's name according to the list below, and as much as his / her name, the star of his name prints the question. Try to use the nested rings Amir 5hooshang 7rez ...
Write a program that receives two users and prints the mean on output
Write a program that receives a text from the user as an input and all the words used in the text, along with the number of repeating them to the user, such as: Input: This is an Example. This is a text ... ...
Using HTML and CSS, insert an image with the following features on the page.
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام 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.