-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1000 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A Markdown Previewer- this is the second certification project of the freeCodeCamp's Front End Development Libraries course."
>
<!-- Title -->
<title>FCC: Markdown Previewer</title>
</head>
<body>
<!-- React.js render -->
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- Marked library -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/marked/11.2.0/marked.min.js"
integrity="sha512-BLTLvBrdIq0KLzJH2C9GpxL6KmCqX5cofqkYxUZPp8J2beb7ABAXPpL7aIbtSdtqLWLIgAyFFgePj1p/sq7lRw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- The freeCodeCamp test suite. -->
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>