Hey! I’m Tressyu -
a self-driven learner with a passion for technology, creativity, and continuous growth.
I spend a lot of my time learning to code, whether that’s through building small projects, exploring new languages, or just figuring out how things work behind the scenes.
When I’m not coding, you’ll probably find me gaming, watching YouTube, or diving into random topics that catch my interest.
I’m naturally curious and always looking for new skills to pick up or ideas to explore.
This site is where I share my journey — from coding projects to thoughts, experiments, and things I find cool along the way.
Thanks for stopping by!
The language for building web pages
LEARN HTML HTML REFERENCE
<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Try it Yourself
The Language for Styling Web Pages
LEARN CSS CSS REFERENCE
body {
background-color: #d0e4fe;
}
h1 {
color: orange;
text-align: center;
}
p {
font-family: "Times New Roman";
font-size: 20px;
}
Try it Yourself
The Language for Programming Web Pages
LEARN JS JS REFERENCE
// Click the button to change the color of this paragraph
function myFunction() {
var x;
x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
Try it Yourself