You must be logged in to access this section.
Login/Sign up<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>نمایش ویدئو در صفحه</title> </head> <body> <video controls> <source src="test" type="video/mp4"> خطا: مرورگر پشتیبانی نمی کند </video> </body> </html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>adress</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<video src="2.mp4" controls width="1290" height="600"></video><hr>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>تست</title>
</head>
<body>
<video controls muted autoplay>
<source src="test.mp4" type="video/mp4">
error
</video>
</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; font-family: Arial, sans-serif; } video { width: 80%; max-width: 600px; border: 1px solid #ccc; border-radius: 8px; } .controls { margin-top: 10px; display: flex; justify-content: center; } button { padding: 10px 15px; margin: 0 5px; border: none; border-radius: 5px; background-color: #007bff; color: white; cursor: pointer; font-size: 16px; } button:hover { background-color: #0056b3; } </style> </head> <body> <video id="myVideo" controls> <source src="test.mp4" type="video/mp4"> <!-- آدرس ویدیو --> مرورگر شما از تگ ویدیو پشتیبانی نمیکند. </video> <div class="controls"> <button onclick="playVideo()">پخش</button> <button onclick="pauseVideo()">توقف</button> <button onclick="stopVideo()">متوقف کردن</button> </div> <script> const video = document.getElementById('myVideo'); function playVideo() { video.play(); } function pauseVideo() { video.pause(); } function stopVideo() { video.pause(); video.currentTime = 0; # Returns the video to the beginning } </script> </body> </html>
<!DOCTYPE html> <html lang="fa";> <head> <meta charset="UTF-8"> <meta name="viewport " content="width=device-width,intial-scale=1.0"> </head> <body> <video content="width=device-width,intial-scale=1.0" controls autoplay muted > <source src="test.mp4" type="video/mp4"> <track src="test.vtt" kind="subtitles" srclang='fa' label="farsi"> </video> </body> </html>
Submitting answers is currently unavailable.
Write a program that gets 3 numbers and prints the most in the output
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 has a graphical environment and can perform the sum, subtraction, multiplication and division operations on the infinite number. (Exactly like a real calculator)
Write a function that receives a number and specifies or not to be paired by returning TRUE or FALSE
Write a program that receives a number and from that number to 0 countdown is required between each number of 1 second pauses
We want to open the cow door, we don't know the password, but we have the following information: the second -digit safing password and the fifth digit equivalent to the first number of the first digit of a larger unit ...
You must be logged in to access this section.
Login/Sign up 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.