-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.html
More file actions
28 lines (26 loc) · 775 Bytes
/
Copy pathdev.html
File metadata and controls
28 lines (26 loc) · 775 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carbon Credits Marketplace - Development</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #0f0f23;
color: #e0e6ed;
}
#root {
width: 100%;
min-height: 100vh;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="http://localhost:5000/dist/js/app.js"></script>
</body>
</html>