1 line
1.7 KiB
HTML
1 line
1.7 KiB
HTML
<!DOCTYPE html>\n<html lang="en">\n<head>\n <meta charset="UTF-8">\n <meta name="viewport" content="width=device-width, initial-scale=1.0">\n <title>Your Website Title</title>\n <!-- SEO Meta Tags -->\n <meta name="description" content="A brief description of your website for SEO purposes." />\n <meta name="keywords" content="keyword1, keyword2, keyword3" />\n <meta name="author" content="Your Name" />\n <link rel="canonical" href="https://www.yourwebsite.com/" />\n <meta property="og:title" content="Your Website Title" />\n <meta property="og:description" content="A brief description of your website for SEO purposes." />\n <meta property="og:image" content="https://www.yourwebsite.com/image.jpg" />\n <meta property="og:url" content="https://www.yourwebsite.com/" />\n <meta name="twitter:card" content="summary_large_image" />\n <meta name="twitter:title" content="Your Website Title" />\n <meta name="twitter:description" content="A brief description of your website for SEO purposes." />\n <meta name="twitter:image" content="https://www.yourwebsite.com/image.jpg" />\n <!-- Structured Data -->\n <script type="application/ld+json">\n {\n "@context": "https://schema.org",\n "@type": "WebSite",\n "name": "Your Website Name",\n "url": "https://www.yourwebsite.com/",\n "potentialAction": {\n "@type": "SearchAction",\n "target": "https://www.yourwebsite.com/?s={search_term_string}",\n "query-input": "required name=search_term_string"\n }\n }\n </script>\n</head>\n<body>\n <h1>Welcome to Your Website</h1>\n <p>This is a sample paragraph of your website content.</p>\n</body>\n</html> |