Skip to content

Instantly share code, notes, and snippets.

View jslicer's full-sized avatar

Jesse Slicer jslicer

View GitHub Profile
@timbergus
timbergus / index.html
Last active March 9, 2023 16:27
Basic HTML5 "Hello World!" document structure.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World! Site Title</title>
</head>
<body>
<h1>Hello World!</h1>
</body>