-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (55 loc) · 1.9 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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Bradley Smith" />
<meta
name="description"
content="My solution to the Frontend
Mentor's Project: Planet Site; built from Figma
design file"
/>
<!-- favicon -->
<link rel="icon" type="image/x-icon" sizes="32x32" href="/favicon.ico" />
<title>Planet Facts - A Frontend Mentor Project</title>
<!-- open graph -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://braddley.github.io/frontend-mentor-planet-facts-site/"
/>
<meta
property="og:title"
content="Bradley's Frontend Mentor: Planet Facts Site Project"
/>
<meta
property="og:image"
content="https://bradleyhop.github.io/frontend-mentor-planet-facts-site/screenshot.png"
/>
<meta
property="og:image:alt"
content="screen shot of Bradley's Frontend Mentor planet facts stite project"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:description"
content="Bradley's implementation of Frontend Mentor's Project: Planet
Facts Site. Built with Vue, Vite, and Sass, this is an exercise for me
building a site from Figma design file."
/>
<meta property="og:locale" content="en_US" />
<!-- google fonts -->
<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=Antonio&family=League+Spartan&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>