Hello, World
By Jonathan Lam on 12/17/15
Tagged: the-homework-life the-homework-life-site
Next post: More Hellos to the World
This is an introductory post in this blog. Let's see how it turns out.
Why did I write this blog? Why did I post this post? We'll never know.
If you were wondering, a "Hello World" program is often the simplest program in any language, usually to show correct basic syntax and output. Here's that of HTML (for websites):
<!DOCTYPE html>
<html>
<head>
<title>Hello World Program in HTML</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>