Spaces:
Running
Running
To ensure proper alignment, formatting, line spacing and font selection are appropriate, one must pay close attention to details during the writing process.
Browse files- index.html +35 -7
index.html
CHANGED
@@ -4,14 +4,30 @@
|
|
4 |
<meta charset="utf-8" />
|
5 |
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
6 |
<title>NeuralNomadAI - Integrated Website</title>
|
7 |
-
|
8 |
<!-- Google Fonts -->
|
9 |
<link href="https://fonts.googleapis.com" rel="preconnect" />
|
10 |
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
|
11 |
-
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&
|
12 |
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet"/>
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
|
16 |
<script>
|
17 |
// Tailwind CSS Configuration
|
@@ -21,13 +37,25 @@
|
|
21 |
extend: {
|
22 |
colors: {
|
23 |
primary: "#1193d4",
|
24 |
-
"background-light": "#
|
25 |
-
"background-dark": "#
|
26 |
},
|
27 |
fontFamily: {
|
28 |
display: ["Space Grotesk", "sans-serif"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
},
|
30 |
-
|
31 |
DEFAULT: "0.25rem",
|
32 |
lg: "0.5rem",
|
33 |
xl: "0.75rem",
|
|
|
4 |
<meta charset="utf-8" />
|
5 |
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
6 |
<title>NeuralNomadAI - Integrated Website</title>
|
|
|
7 |
<!-- Google Fonts -->
|
8 |
<link href="https://fonts.googleapis.com" rel="preconnect" />
|
9 |
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect" />
|
10 |
+
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
|
11 |
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet"/>
|
12 |
+
<style>
|
13 |
+
body {
|
14 |
+
line-height: 1.6;
|
15 |
+
letter-spacing: 0.01em;
|
16 |
+
}
|
17 |
+
h1, h2, h3, h4, h5, h6 {
|
18 |
+
line-height: 1.3;
|
19 |
+
margin-bottom: 0.75em;
|
20 |
+
}
|
21 |
+
p {
|
22 |
+
margin-bottom: 1.25em;
|
23 |
+
}
|
24 |
+
.container {
|
25 |
+
max-width: 1200px;
|
26 |
+
margin: 0 auto;
|
27 |
+
padding: 0 1rem;
|
28 |
+
}
|
29 |
+
</style>
|
30 |
+
<!-- Tailwind CSS -->
|
31 |
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
|
32 |
<script>
|
33 |
// Tailwind CSS Configuration
|
|
|
37 |
extend: {
|
38 |
colors: {
|
39 |
primary: "#1193d4",
|
40 |
+
"background-light": "#f8fafc",
|
41 |
+
"background-dark": "#0f172a",
|
42 |
},
|
43 |
fontFamily: {
|
44 |
display: ["Space Grotesk", "sans-serif"],
|
45 |
+
body: ["Space Grotesk", "sans-serif"],
|
46 |
+
},
|
47 |
+
lineHeight: {
|
48 |
+
tight: 1.25,
|
49 |
+
snug: 1.375,
|
50 |
+
normal: 1.6,
|
51 |
+
relaxed: 1.75,
|
52 |
+
},
|
53 |
+
letterSpacing: {
|
54 |
+
tight: '-0.015em',
|
55 |
+
normal: '0.01em',
|
56 |
+
wide: '0.03em',
|
57 |
},
|
58 |
+
borderRadius: {
|
59 |
DEFAULT: "0.25rem",
|
60 |
lg: "0.5rem",
|
61 |
xl: "0.75rem",
|