All you need is HTML, CSS & JS!

And that is me being fully honest. Sure i use fancy things like 11ty for this website but thats because im a lazy prick.

The beauty of HTML CSS, & JS is that you know how it works. Sure people will say stupid things like:

"Oh if your gonna make a website in html the you should just code in ASM!"

HTML is not that hard you wuss! Here:

<html>
    <body>
        <p>Hello, World</p>
    </body>
</html>

Heres the ASM equal:

global _start

section .data
	
	align 2
	hello: db 'Hello world!', 0xa
	helloLen: equ $-hello

section .bss

section .text

	_start:

	mov eax, 0x4
	mov ebx, 0x1
	mov ecx, hello
	mov edx, helloLen
	int 0x80

	mov eax, 0x1
	xor ebx, ebx
	int 0x80

Alot more complex huh?

Whats hard is dealing w/ bullshit webdev frameworks that take a life to learn and also endoctrinate you into a cult at the same time.