-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (37 loc) · 2.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<title>Markdown Editor</title>
<!-- SEO -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A Markdown Editor created by Eliot Sanford created as one of five projects for the freeCodeCamp Front-End Library Certification.">
<meta name="keywords" content="markdown, markup, mark-down, mark-up, markdone, markdon, mrkdown, amrkdown, editor, editors, editting, edit, converter, conversion, Eliot, Elliott, Elliot, Stanford, Sanford, Sandford, Eliot Sanford, projects, freeCodeCamp, Free Code Camp, Reactjs, React, Front-End, Frontend, Library, Certification">
<meta name="robots" content="index, follow" />
<meta property="og:title" content="Markdown Editor by Eliot Sanford">
<meta property="og:image" content="https://markdown-editor-techieEliot.netlify.app/assets/screenshots.png">
<meta property="og:description" content="A Markdown Editor created by Eliot Sanford created as one of five projects for the freeCodeCamp Front-End Library Certification.">
<meta property="og:url" content="https://markdown-editor-techieEliot.netlify.app/">
<meta name="twitter:card" content="summary_large_image">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<link rel="canonical" href="https://markdown-editor-techieeliot.netlify.app" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Markdown Previewer" />
<meta property="og:image" content="./screenshot.png" />
<meta property="og:image:secure_url" content="https://markdown-editor-techieeliot.netlify.app/screenshot.png" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="650" />
<meta property="og:image:alt" content="Markdown editor allows users to create and preview markdown" />
<!-- SCRIPTS -->
<script defer src="./src/index.js"></script>
<script defer src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/marked/1.1.1/marked.js"></script>
<!-- LINKS -->
<!-- <link rel="shortcut icon" href="./favicon.ico"> -->
</head>
<body>
<div id="root"></div>
</body>
</html>