Skip to content

Instantly share code, notes, and snippets.

@okurka12
Created January 26, 2025 15:20
Show Gist options
  • Save okurka12/eb9c172a00f1502077a377df6f71c962 to your computer and use it in GitHub Desktop.
Save okurka12/eb9c172a00f1502077a377df6f71c962 to your computer and use it in GitHub Desktop.
HTML boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<!-- boilerplate -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- site title -->
<title>XXXXX</title>
<!-- meta tags -->
<meta content="XXXXX" name="description">
<meta content="XXXXX" property="og:title">
<meta content="XXXXX" property="og:description">
<meta content="XXXXX" property="og:site_name">
<meta content="https://xxxxx.xyz/xxxxx.jpg" property="og:image">
<!-- style sheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- script -->
<script src="index.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment