Your browser does not support WebUSB. Try using Chrome, Edge, or Opera. The assembler will still work in this browser.
Windows computers need to have a driver set up to interface with the AVR microcontroller. You can set this up using the instructions here.
sbi DDRD,4
loop:
sbis PIND,7
rjmp button_down
cbi PORTD,4
rjmp loop
button_down:
sbi PORTD,4
rjmp loop