-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coffee Roaster Subscription</title>
<meta name="author" content="Bradley Smith" />
<meta
name="description"
content="Bradley's Solution to FrontEndMentor's Coffee Roaster Subscription"
/>
<!-- open graph metadata -->
<meta property="og:title" content="Coffee Roaster Subscription Project" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Bradley's Solution to FrontEndMentor's Coffee Roaster Subscription"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/bradleyhop/frontend-mentor-coffeeroasters-sub/main/public/img/opengraph/desktop.jpeg"
/>
<meta
property="og:image:alt"
content="Screen Shot of Coffee Roaster Subscription Project"
/>
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="250" />
<meta
property="og:url"
content="https://bradleyhop.github.io/frontend-mentor-coffeeroasters-sub/#/"
/>
<!-- Google Fonts: Fraunces, Barlow -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Barlow&family=Fraunces:[email protected]&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>