Hello Blog!

Hello Blog! Here is my first (test) post!!!

I am using this post to try out different markdown syntax including

  • code snippets
  • links
  • and more!

JavaScript snippet:

//simple lines to prove highlight
const message = 'Hello World';
console.log(message);

HTML snippet:

<html>
  <head>
    <title>HTML syntax</title>
  </head>
  <body>
    <p class="text">Hello World</p>
    <div id="box">Block</div>
  </body>
<html>

CSS snippet:

.text {
  color: #003366;
  font-size: 16px;
}

#box {
  width: 100px;
  height: 100px;
}

Testing out URLs: Check out the post I wrote about JavaScript functions as well as my github page!

Updated: