-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsemantics_11.html
More file actions
59 lines (56 loc) · 1.73 KB
/
semantics_11.html
File metadata and controls
59 lines (56 loc) · 1.73 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semantic</title>
</head>
<body>
<!-- Header -->
<header id="header" class="card">
<h1>Web App</h1>
<p>Just another application!</p>
</header>
<!-- Using Meaningful Text and Tags -->
<!-- Main Content -->
<main id="main">
<!-- Welcome Section -->
<section id="welcome" class="card">
<h2>Lorem ipsum dolor sit.</h2>
<p>Lorem ipsum dolor sit amet
consectetur adipisicing elit. Architecto, nemo?</p>
</section>
<!-- Blog section -->
<section id="blog">
<h2>From our blog</h2>
<!-- Article One -->
<article class="article">
<h3>Article one</h3>
<p>Lorem ipsum dolor sit amet.</p>
</article>
<!-- Article Two -->
<article class="article">
<h3>Article Two</h3>
<p>Lorem ipsum dolor sit amet.</p>
</article>
</section>
</main>
<!-- Sidebar -->
<aside id="sidebar" class="card">
<h3>Navigation Bar</h3>
<!-- Navigation menu -->
<nav>
<ul id="main-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="client.html">client</a></li>
</ul>
</nav>
</aside>
<footer id="footer">
<p class="text-center">Copyright © 2022</p>
</footer>
</body>
</html>