-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSEOexample.html
More file actions
33 lines (30 loc) · 1.04 KB
/
SEOexample.html
File metadata and controls
33 lines (30 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Learn how to build accessible and SEO-friendly web pages.">
<title>Accessibility and SEO Basics</title>
</head>
<body>
<header>
<h1>Welcome to Web Best Practices</h1>
<nav>
<a href="#accessibility">Accessibility</a> |
<a href="#seo">SEO</a>
</nav>
</header>
<section id="accessibility">
<h2>Improving Accessibility</h2>
<p>Use semantic HTML, add alt text, and ensure keyboard navigation.</p>
<img src="accessible-design.jpg" alt="Accessible web design illustration">
</section>
<section id="seo">
<h2>Boosting SEO</h2>
<p>Optimize titles, meta descriptions, and ensure mobile responsiveness.</p>
</section>
<footer>
<p>© 2024 Web Masters | <a href="https://www.w3.org/WAI/" target="_blank">Accessibility Guidelines</a></p>
</footer>
</body>
</html>m