
About Stijn
Hi, I'm Stijn, currently years old, living in , . My journey into web and app development started out of curiosity and quickly grew into a passion.
My Learning Path
I began my journey into programming with HTML, CSS, and JavaScript, using resources like Codecademy, HackTheBox, and W3Schools.
HTML Example:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
HTML (HyperText Markup Language) is the standard markup language for documents designed to be displayed in a web browser. CSS (Cascading Style Sheets) is used for styling and layouts, while JavaScript adds interactivity to web pages. PHP (Hypertext Preprocessor) is a server scripting language used to make web pages dynamic and interactive.
CSS Example
CSS Example:
body {
background-color: #f0f0f0;
color: #333;
font-family: Arial, sans-serif;
}
JavaScript Example
JavaScript Example:
document.addEventListener('DOMContentLoaded', function() {
console.log('Document loaded');
});
PHP Example
PHP Example:
<?php
echo "Hello, World!";
?>