Created
January 26, 2025 15:20
-
-
Save okurka12/eb9c172a00f1502077a377df6f71c962 to your computer and use it in GitHub Desktop.
HTML boilerplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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