diff options
author | Alex <i@neonxp.dev> | 2023-02-16 14:52:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 14:52:28 +0300 |
commit | 64ef0e585011bd8b5667ba9b3b078cf36294d894 (patch) | |
tree | cad0bbf7d445ce794724b0ba90882209ad0fa633 /index.html | |
parent | 92586077f5ae476a249429cb2b2bff2d165198fc (diff) |
Create index.html
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..c2f1d2e --- /dev/null +++ b/index.html @@ -0,0 +1,30 @@ +<!doctype html> + +<html lang="ru"> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <title>A Basic HTML5 Template</title> + <meta name="description" content="A simple HTML5 Template for new projects."> + <meta name="author" content="SitePoint"> + + <meta property="og:title" content="A Basic HTML5 Template"> + <meta property="og:type" content="website"> + <meta property="og:url" content="https://www.sitepoint.com/a-basic-html5-template/"> + <meta property="og:description" content="A simple HTML5 Template for new projects."> + <meta property="og:image" content="image.png"> + + <link rel="icon" href="/favicon.ico"> + <link rel="icon" href="/favicon.svg" type="image/svg+xml"> + <link rel="apple-touch-icon" href="/apple-touch-icon.png"> + + <link rel="stylesheet" href="css/styles.css?v=1.0"> + +</head> + +<body> + <h1>WebApp example</h1> + <script src="js/scripts.js"></script> +</body> +</html> |