-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<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=Jost:ital,wght@1,300&display=swap"
rel="stylesheet"
/>
<!-- added open graph -->
<meta property="og:title" content="weather" />
<meta property="og:site_name" content="weather-app" />
<meta property="og:url" content=https://ashishk-weather-app.netlify.app/>
<meta property="og:description" content="This" is simple weather app />
<meta property="og:type" content="" />
<meta property="og:image"
content=https://cdn-icons-png.flaticon.com/512/7477/7477790.png>
<!-- added twitter card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ashishk-weather-app" />
<meta name="twitter:title" content="weather-app" />
<meta
name="twitter:description"
content="this is twitter card for weather app"
/>
<meta
name="twitter:image"
content="https://cdn-icons-png.flaticon.com/512/7477/7477790.png"
/>
<!-- added canonical tag -->
<link rel="canonical" href="https://ashishk-weather-app.netlify.app/" />
<title>weather-app</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>