0% found this document useful (0 votes)
4 views

html for web dev

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

html for web dev

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

DOCTYPE html>

<html lang="en">

<head>

<!-- Metadata -->

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta name="description" content="Brief description of your page, up to 155 characters for better
SEO.">

<meta name="keywords" content="keyword1, keyword2, keyword3">

<meta name="author" content="Your Name or Business Name">

<!-- Title -->

<title>This is a demo of SEO - Abhi</title>

<!-- Open Graph (OG) Metadata for Social Media -->

<meta property="og:title" content="Your Page Title">

<meta property="og:description" content="Brief description of your page for social sharing.">

<meta property="og:image" content="https://yourwebsite.com/your-image.jpg">

<meta property="og:url" content="https://yourwebsite.com">

<!-- Favicon -->

<link rel="icon" href="favicon.ico" type="image/x-icon">

<!-- Stylesheet -->

<link rel="stylesheet" href="/css/style.css">

</head>

<body>

<!-- Header -->

<header>

<h1>Main Heading of the Page</h1>

<nav>
<ul>

<li><a href="/">Home</a></li>

<li><a href="/about">About</a></li>

<li><a href="/services">Services</a></li>

<li><a href="/contact">Contact</a></li>

</ul>

</nav>

</header>

<!-- Main Content -->

<main>

<article>

<h2>Subheading with Targeted Keyword</h2>

<p>Your engaging and informative content goes here. Use <strong>keywords</strong>


naturally and provide value to the reader.</p>

<img src="https://yourwebsite.com/image.jpg" alt="Descriptive Alt Text">

<a href="https://yourwebsite.com/related-page" title="Title for the link">Read More</a>

</article>

</main>

<!-- Footer -->

<footer>

<p>&copy; 2024 Your Business Name. All rights reserved.</p>

<p><a href="/privacy-policy">Privacy Policy</a> | <a href="/terms">Terms of Service</a></p>

</footer>

<!-- Structured Data for SEO (JSON-LD) -->

<script type="application/ld+json">

"@context": "https://schema.org",

"@type": "WebPage",
"name": "Your Page Title",

"description": "Brief description of your page for structured data.",

"url": "https://yourwebsite.com",

"author": {

"@type": "Person",

"name": "Your Name"

</script>

</body>

</html>

You might also like