

I love HTML, CSS, and JS! Do you know how to use it? It is easy to use and make a website with! Here is a chart!
<p>This is text</p>
<a href="www.google.com">This is a link</a>
<img src="image.jpg" alt="This is an image">
You can such a simple, but such a cool website with just that!
Now, some css!
body {
background: red;
}
That changes the background! Remember to always put CSS in <style> </style> in <head> </head>
Now JS.
function showAlert() {
alert("Hello! This is a JavaScript alert.");
}
Put this in <script> </script>
Put this in body:
<button onclick="showAlert()">Click Me</button>
Now you have an Alert button!
I hope you like my website!
Now a whole website using all those little bits!
<!doctype html>
<html>
<head>
<title>Title</title>
<style>
body {
background: red;
}
</style>
</head>
<body>
<script>
function showAlert() {
alert("Hello! Welcome! This is an alert!");
}
</script>
<p>Hello! This is plain text!</p>
<a href="www.google.com">Go to Google!</a>
<img src="cat.jpg">
<p>My Cat</p>
</body>
</html>
See you around!

This area is still being built with love, pixels, and questionable HTML.
