Skip to content

Instantly share code, notes, and snippets.

@jiunnhwa
Last active May 24, 2024 04:32
Show Gist options
  • Save jiunnhwa/120ba910c2548ec8e1caa4268054bd36 to your computer and use it in GitHub Desktop.
Save jiunnhwa/120ba910c2548ec8e1caa4268054bd36 to your computer and use it in GitHub Desktop.
HTML5 Starter Template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="HTML5 Starter Template">
<meta name="author" content="Jiunn">
<title>My Website</title>
<link rel="stylesheet" href="./style.css?v=1.0">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<main>
<h1>Welcome to My Website</h1>
</main>
<script defer src="index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment