-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 706 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Motion Yoga</title>
<script defer>
let gif = new Image();
gif.src = "https://giphy.com/embed/ly6swQArDGorfi4h7p/video";
</script>
<script src="/public/bundle.js" defer></script>
<link
href="https://fonts.googleapis.com/css2?family=Radio+Canada:wght@300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Playball&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./public/styles/style.css" />
</head>
<body>
<div id="root"></div>
</body>
</html>