-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmltags_usage.html
101 lines (101 loc) · 1.86 KB
/
htmltags_usage.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
<!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="Sample HTML Page"
/>
<meta
name="keywords"
content="sample, HTML, tags"
/>
<meta
name="author"
content="John Doe"
/>
<meta
name="robots"
content="index, follow"
/>
<meta
property="og:title"
content="Sample HTML Page"
/>
<meta
property="og:description"
content="This is a sample HTML page..."
/>
<meta
property="og:image"
content="https://example.com/sample-image.jpg"
/>
<meta
property="og:url"
content="https://example.com/sample-page"
/>
<meta
name="twitter:card"
content="summary_large_image"
/>
<meta
name="twitter:site"
content="@example"
/>
<meta
name="twitter:title"
content="Sample HTML Page"
/>
<meta
name="twitter:description"
content="This is a sample HTML page..."
/>
<meta
name="twitter:image"
content="https://example.com/sample-image.jpg"
/>
<title>Basic HTML Page</title>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>About Us</h2>
<p>We are a team of passionate individuals...</p>
</section>
<section>
<h2>Services</h2>
<ul>
<li>Web Design</li>
<li>Graphic Design</li>
<li>SEO Optimization</li>
</ul>
</section>
</main>
<aside>
<h3>Recent Posts</h3>
<ul>
<li><a href="#">Post 1</a></li>
<li><a href="#">Post 2</a></li>
<li><a href="#">Post 3</a></li>
</ul>
</aside>
<footer>
<p>© 2023 My Website. All rights reserved.</p>
</footer>
</body>
</html>