-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.26 KB
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Particles</title>
<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=Nunito+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="images/logo.png">
</head>
<body>
<header class="header">
<div class="header-inner">
<div class="header-title">
<img src="images/logo.png" alt="Particles Logo" class="header-logo"/>
<span>Particles</span>
</div>
</div>
</header>
<div class="particles-app-container">
<div class="particles-app">
<aside id="toc" class="toc-section" tabindex="0">
<!-- Table of contents will be rendered here -->
</aside>
<main id="article" class="article-section" tabindex="0">
<!-- Article content will be rendered here -->
</main>
</div>
</div>
<script src="app.js"></script>
</body>
</html>