-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (89 loc) · 4 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
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
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Analytics and Tracking Scripts -->
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>theSEO.website</title>
<meta name="description" content="Comprehensive guide to implementing SEO best practices for new domains with practical steps and code examples">
<link rel="canonical" href="https://theseo.website/">
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="theSEO.website - Comprehensive SEO Guide">
<meta property="og:description" content="A detailed guide outlining 15 crucial SEO steps for launching and optimizing a new domain, complete with code examples and best practices.">
<meta property="og:url" content="https://theseo.website/">
<meta property="og:type" content="website">
<meta property="og:image" content="https://theseo.website/social-image.png">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="theSEO.website - Comprehensive SEO Guide">
<meta name="twitter:description" content="A detailed guide outlining 15 crucial SEO steps for launching and optimizing a new domain, complete with code examples and best practices.">
<meta name="twitter:image" content="https://theseo.website/twitter-image.png">
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "theSEO.website",
"description": "A detailed guide outlining 15 crucial SEO steps for launching and optimizing a new domain, complete with code examples and best practices.",
"publisher": {
"@type": "Organization",
"name": "theSEO.website",
"logo": {
"@type": "ImageObject",
"url": "https://theseo.website/logo.png"
}
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://theseo.website/"
},
"breadcrumb": {
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://theseo.website/"
}
]
}
}
</script>
<!-- CSS Styles -->
<link rel="stylesheet" href="styles.css">
<!-- PrismJS Styles for Syntax Highlighting -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" rel="stylesheet" />
</head>
<body>
<!-- Progress Bar -->
<div id="progress-bar" aria-hidden="true"></div>
<div class="container">
<!-- Header Section -->
<header>
<h1>theSEO.website</h1>
<p class="subtitle">A comprehensive guide to launching your domain with strong SEO foundations</p>
</header>
<!-- Main Content Grid -->
<main class="grid" id="cards-container">
<!-- Cards will be dynamically loaded here -->
</main>
</div>
<!-- Back to Top Button -->
<button class="back-to-top" onclick="scrollToTop()" aria-label="Back to Top">↑</button>
<!-- Footer Section -->
<footer>
<p>~~(っ◔◡◔)っ ♥/2024/theseo.website</p>
</footer>
<!-- PrismJS Scripts for Syntax Highlighting -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-xml.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-css.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-javascript.min.js" defer></script>
<!-- JavaScript for Interactivity and Functionality -->
<script src="scripts.js" defer></script>
</body>
</html>