-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I have added the robot.tx file in my root directory
- Loading branch information
1 parent
6f9398c
commit 5a1c4e2
Showing
10 changed files
with
763 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="robots" content="index, follow" /> | ||
<meta property="og:type" content="website" /> | ||
<meta | ||
name="description" | ||
content="Unlock your coding potential with Merge Society's interactive tutorials, exercises, and resources. Learn HTML, CSS, JavaScript, Python, and more, and become a proficient developer in no time!" | ||
/> | ||
<title>Learn to Code with Merge Society</title> | ||
<meta name="p:domain_verify" content="ead9ce0acd388ef15d8dce7ea6918d60" /> | ||
<meta name="twitter:card" content="summary" /> | ||
<meta | ||
name="twitter:title" | ||
content="Merge Society - Learn to Code with Interactive Tutorials" | ||
/> | ||
<meta | ||
name="twitter:description" | ||
content="Unlock your coding potential with Merge Society's interactive tutorials, exercises, and resources. Learn HTML, CSS, JavaScript, Python, and more, and become a proficient developer in no time!" | ||
/> | ||
<meta | ||
name="twitter:image" | ||
content="https://res.cloudinary.com/dhgjhspsp/image/upload/v1712405443/HTML5_Badge_512_njlsbs.png" | ||
/> | ||
<meta | ||
property="og:title" | ||
content="Merge Society - Learn to Code with Interactive Tutorials" | ||
/> | ||
<meta | ||
property="og:description" | ||
content="Unlock your coding potential with Merge Society's interactive tutorials, exercises, and resources. Learn HTML, CSS, JavaScript, Python, and more, and become a proficient developer in no time!" | ||
/> | ||
<meta | ||
property="og:image" | ||
content="https://res.cloudinary.com/dhgjhspsp/image/upload/v1712405443/HTML5_Badge_512_njlsbs.png" | ||
/> | ||
<meta | ||
name="Keywords" | ||
content="HTML, CSS, JavaScript, Programming Tutorials, Web Development, Coding Exercises, Learn to Code, Interactive Tutorials, Python, React" | ||
/> | ||
<link | ||
rel="shortcut icon" | ||
href="https://res.cloudinary.com/dhgjhspsp/image/upload/v1712405443/HTML5_Badge_512_njlsbs.png" | ||
type="image/x-icon" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" | ||
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" | ||
/> | ||
<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=Roboto:wght@300&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<!-- Canonical URL --> | ||
<link rel="canonical" href="https://www.mergesociety.com/" /> | ||
|
||
<!-- Google Analytics --> | ||
<script | ||
async | ||
src="https://www.googletagmanager.com/gtag/js?id=G-EVC3DTG6XZ" | ||
></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { | ||
dataLayer.push(arguments); | ||
} | ||
gtag("js", new Date()); | ||
gtag("config", "G-EVC3DTG6XZ"); | ||
</script> | ||
|
||
<!-- Google AdSense --> | ||
<script | ||
async | ||
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6271278895910760" | ||
crossorigin="anonymous" | ||
></script> | ||
|
||
<!-- Clicky Analytics --> | ||
<script async data-id="101458649" src="//static.getclicky.com/js"></script> | ||
|
||
<!-- Structured Data --> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "https://schema.org", | ||
"@type": "BreadcrumbList", | ||
"itemListElement": [ | ||
{ | ||
"@type": "ListItem", | ||
"position": 1, | ||
"name": "Home", | ||
"item": "https://www.mergesociety.com/" | ||
}, | ||
{ | ||
"@type": "ListItem", | ||
"position": 2, | ||
"name": "Tutorials", | ||
"item": "https://www.mergesociety.com/tutorials" | ||
} | ||
] | ||
} | ||
</script> | ||
<script type="module" crossorigin src="/assets/index-BaLUyckN.js"></script> | ||
<link rel="stylesheet" crossorigin href="/assets/index-D8WiLJYm.css"> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.article { | ||
margin: 35px 35px auto; | ||
text-align: justify; | ||
line-height: 25px; | ||
} | ||
h1, | ||
h3, | ||
p { | ||
margin-top: 20px; | ||
} | ||
@media (max-width: 600px) { | ||
.article { | ||
margin: 15px 15px auto; | ||
line-height: 25px; | ||
} | ||
h1 { | ||
font-size: 1.2em; | ||
} | ||
p { | ||
font-size: 1em; | ||
} | ||
h3 { | ||
font-size: 1em; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.