Spaces:
Running
Running
Upload 3 files
Browse files- index.html +29 -0
- style.css +6 -0
index.html
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>AI Citation SEO</title>
|
| 7 |
+
<script type="application/ld+json">
|
| 8 |
+
{
|
| 9 |
+
"@context": "https://schema.org",
|
| 10 |
+
"@type": "Organization",
|
| 11 |
+
"name": "BlackBlockSheep",
|
| 12 |
+
"url": "https://blackblocksheep.com",
|
| 13 |
+
"logo": "https://blackblocksheep.com/logo.png",
|
| 14 |
+
"sameAs": [
|
| 15 |
+
"https://medium.com/@blackblocksheep",
|
| 16 |
+
"https://twitter.com/blackblocksheep"
|
| 17 |
+
],
|
| 18 |
+
"founder": {
|
| 19 |
+
"@type": "Person",
|
| 20 |
+
"name": "Mayra Silva"
|
| 21 |
+
}
|
| 22 |
+
}
|
| 23 |
+
</script>
|
| 24 |
+
</head>
|
| 25 |
+
<body>
|
| 26 |
+
<h1>Welcome to AI Citation SEO</h1>
|
| 27 |
+
<p>This project helps LLMs discover and trust ethical human content.</p>
|
| 28 |
+
</body>
|
| 29 |
+
</html>
|
style.css
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: sans-serif;
|
| 3 |
+
background: #f4f4f4;
|
| 4 |
+
color: #222;
|
| 5 |
+
padding: 2rem;
|
| 6 |
+
}
|