-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantics.html
62 lines (60 loc) · 1.74 KB
/
semantics.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Semantics</title>
</head>
<body>
<!-- Semantics - will help describe your webpage to the browser and other developers -->
<header>
<!-- header - represents a container for introducing your content -->
<nav>
<ul>
<li><a href="https://www.example.com" target="_blank">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Services</a></li>
</ul>
</nav>
</header>
<main></main>
<section>
<!-- section tag - defines a section in a document -->
<h1>Green Planet</h1>
<p>Description about company</p>
</section>
<section>
<h2>About Us</h2>
<p> We’re passionate about creating sustainable technology solutions for a healthier planet.</p>
</section>
</section>
<section>
<h2>Services</h2>
<ul>
<li>Product Sales</li>
<li>Consultations</li>
<li>Support</li>
</ul>
</section>
</main>
<aside>
<!-- aside - defines some contents that are not part of the
main discussion; should be indirectly related to other content-->
<h3>Latest News</h3>
<p>Check our new product launch</p>
</aside>
</aside>
<footer>
<!-- footer - defines the footer for a document and usually includes the ff:
a. authorship information
b. copyright information
c. contact information
d. sitemap
d. privacy policy
e. social media icons
-->
<p>© 2024 OCCPHT05. All rights reserved.</p>
</footer>
</body>
</html>