-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (28 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/neptunecss@latest/neptune.min.css">
<!-- Import Neptune CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/neptunecss@latest/neptune.min.css">
<!-- Import Neptune CSS from node_modules -->
<!-- <link rel="stylesheet" href="./node_modules/neptunecss/neptune.min.css"> -->
<!-- Import Main CSS File -->
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/x-icon" href="./favicon.png">
<title>Quickstart | Neptune CSS</title>
</head>
<body>
<img class="logo" src="./favicon.png" alt="Neptune CSS Logo">
<span class="headline-1">Neptune CSS</span>
<div class="button-box" id="button-box"></div>
<!-- Import Main JS File -->
<script type="module" src="./main.js"></script>
<!-- Import Neptune JS from node_modules -->
<script type="module" src="./node_modules/neptunecss-js/neptune.min.js"></script>
<!-- Import Neptune JS -->
<!-- <script type="module" src="https://cdn.jsdelivr.net/npm/neptunecss-js@latest/neptune.js"></script> -->
</body>
</html>