I probably wouldn't hire anyone who listed CSS (or HTML) as one of their programming languages.
I would send them a programming exercise.
"This task is to be completed using only the following programming language which we have chosen from your profile:
CSS. Your solution must use only CSS; no Java, no Javascript, etc."
Assignment:
Write the program fizzbuz.
Program Specifications:
When started the program asks the user to input a Starting number and then an Ending number. Both inputs should be integers.
After the user completes input: Display on the screen the difference between the Starting number and the Ending number as the Difference number.
If the difference number is greater than zero, then the program loops using an iterator beginning at the Starting number and incrementing up to the Ending number inclusive by 1 each time printing the number followed by a message on the line by itself for each iteration within the loop.
The following rules shall be used to determine the message printed at each iteration of the loop described above:
For whole numbers divisible by 8 the message shall be Fizz.
For whole numbers the message shall be Buzz.
For all other positive integers the message shall be Nop
For any other number the message shall be Err
Upon loop completion the program shall display on a line by itself the name of each Message that appeared with numbers, and a count of the total number of appearances.
The messages to be displayed shall not be hardcoded for any specific counter value to a specific message option. The user should be given the option but not requirement to specify or change the messages used before the loop starts.