You must be logged in to access this section.
Login/Sign up<!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> <h1 class="stroke-text">متن استروک دار</h1> </body> </html> CSS (styles.css) css body { display: flex; align-items: center; justify-content: center; height: 100vh; # To center vertical background-color: #f0f0f0; # The background color font-family: Arial, sans-serif; } .stroke-text { font-size: 60px; # Font size color: white; # Text color text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; # Stroke }
Submitting answers is currently unavailable.
Write a program that receives users' student names and number and stores in a file called Students.txt. Also, after each storage, display the entire information of this file at the output.
Style the FIX class using CSS to constantly place in the lower left corner of the screen (10 pixels) and the position does not change if the user scrolls.
Write a program that receives a number and prints the figure below according to the number, the Number Example: 3 #######Number Example: 5 #######################
Write a program where the user can enter the clock, minutes and seconds as the example below and from the time entered, the countdown to zero is Input: 1:22:50 # One hour and twenty minutes and fifty seconds
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.