-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 2.82 KB
/
index.html
File metadata and controls
98 lines (89 loc) · 2.82 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=divice-width, initial-scale=1.0">
<title>About JsonLove ❤️</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<style media="screen">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Ubuntu Sans", sans-serif;
font-size: 1.5rem;
line-height: 1.5;
}
main {
margin: 22vh auto;
overflow: hidden;
max-width: 720px;
}
h1 {
font-size: 4rem;
line-height: 1;
color: #444
font-weight: 800;
margin-bottom: 1.5rem;
}
section p {
margin-bottom: 1.5rem;
}
.intro {
margin-bottom: 2rem;
}
h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
}
small {
color: #999;
}
</style>
<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=Ubuntu+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<main>
<section>
<h1>About JSON Love</h1>
<div class="intro">
We ❤️ JSON.
</div>
<h2>Introduction</h2>
<p>
We are building <a href="https://jsonlove.com/tools/">JSON tools directory</a> 🛠️ with conversion tools, datasets and visualizers for developers.
</p>
<h2>Issue & idea list</h2>
<p>
🛠️ Add issues, feature- and tool requests here: <a href="https://github.com/json-love/website-issue-tracker/issues" target="_blank">github.com/json-love/website-issue-tracker/issues</a>.
</p>
<h2 id="version-history">Version history</h2>
<p>
2025-07-08 - ✨ Added direct input to "<a href="https://jsonlove.com/tool/csv-to-json-online-converter/" target="_blank">CSV to JSON</a>" tool.
</p>
<p>
2024-08-08 - 🚀 Added "<a href="https://jsonlove.com/tool/pricing-packages-json-generator/" target="_blank">Pricing packages JSON generator</a>" tool.
</p>
<p>
2024-08-06 - 🚀 Added "<a href="https://jsonlove.com/tool/merge-add-missing-keys-into-json-array-of-objects/" target="_blank">Merge and add missing keys into array of objects</a>" tool.
</p>
<p>
2024-07-04 - ✨ Added <a href="https://prismjs.com/" target="_blank">Prism</a> syntax highlighter for outputs.
</p>
<p>
2024-06-28 - 🚀 Added basic <a href="https://jsonlove.com/tool/excel-to-json-converter-online/" target="_blank">Excel to JSON</a> tool.
</p>
<p> </p>
<p>
<small>
* This is landing page built on
<a href="https://json-love.github.io/">github pages</a>
and source code can be found in <a href="https://github.com/json-love/">github repository</a>
</small>
</p>
<p> </p>
</section>
</main>
</body>