Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created January 10, 2019 00:33
Show Gist options
  • Select an option

  • Save topherPedersen/030fe75eea7633f91b56838c45ffd232 to your computer and use it in GitHub Desktop.

Select an option

Save topherPedersen/030fe75eea7633f91b56838c45ffd232 to your computer and use it in GitHub Desktop.
Hello World in HTML, CSS, & JavaScript
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: red;
}
</style>
</head>
<body>
<h1>hello, world</h1>
<p>Welcome to Web Development with HTML, CSS, & JavaScript!</p>
<script>
alert("hello, world");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment