-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 746 Bytes
/
Copy pathindex.html
File metadata and controls
20 lines (20 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Trending Projects</title>
<link rel="stylesheet" href="/src/styles/index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Open+Sans&family=Orbitron&display=swap">
</head>
<body class="bg-dark-background text-light-text font-open-sans">
<header></header>
<main>
<div id="root">
<!-- Entry point for the React application. React components will be rendered inside this div. -->
</div>
</main>
<footer></footer>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>