This Website!
This website is a small personal project I took on to see what we get for free using extremely minimal HTML.
It is using the following raw technologies:
- HTML 5
- CSS 3
- Raw JavaScript (With whatever browser compatibility is available in 2022 browsers)
- Apache HTTPD Server
I was intending to use only JavaScript I could write myself, but I have also imported the below scripts to get some helpful visual aids that I couldn't achieve with just CSS:
In essence, this website is devoid of almost any modern frameworks, polyfills, or even a build system.
This makes the size excessively minimal, even if maybe it isn't nearly as fancy as a full web app.
The highlightJs scripts allow me to embed code segments like this:
fn main() {
println!("Hello World!");
if(true) {
println!("This is Me!");
}
}