-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
71
72
<!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" />
<!-- Google Font -->
<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=Manrope:wght@400;500;700&family=Playfair+Display:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<title>News Feeder | Learn with Sumit</title>
<style>
@font-face {
font-family: "Fira Sans";
src: url("fonts/fira/eot/FiraSans-Italic.eot");
src: url("fonts/fira/eot/FiraSans-Italic.eot")
format("embedded-opentype"),
url("fonts/fira/woff2/FiraSans-Italic.woff2") format("woff2"),
url("fonts/fira/woff/FiraSans-Italic.woff") format("woff"),
url("fonts/fira/woff2/FiraSans-Italic.ttf") format("truetype");
font-weight: normal;
font-style: italic;
} /* TT Commons */
@font-face {
font-family: "TT Commons";
src: url("/assets/fonts/tt-commons/TTCommonsRegular.otf");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "TT Commons";
src: url("/assets/fonts/tt-commons/TTCommonsSemiBold.otf");
font-weight: 600;
font-style: normal;
} /* Publico Headline Web */
@font-face {
font-family: "Publico Headline Web";
src: url("/assets/fonts/publico-headline-web/Publico-Headline-Web-Bold.ttf");
font-weight: 700;
font-style: normal;
}
body {
font-family: TT Commons, "sans-serif";
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Publico Headline Web, "serif";
line-height: 110%;
}
a {
transition: color 0.3s;
}
a:hover {
color: #00d991;
}
.container {
padding: 0 1rem;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>