section .data
    text db "Hello, World!",10

section .text
    global _start

_start:
    call _printHello
    mov rax, 60
    mov rdi, 0
    syscall

_printHello:
           mov rax,  1
           mov rdi, 1
           mov rsi, text
           mov rdx, 14
           syscall
           ret

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: