-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
37 lines (31 loc) · 1.18 KB
/
test.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
<html>
<head>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.js"></script>
</head>
<body>
<!-- Add semantic tags to this HTML -->
<header>
<h1>Learning Web Development</h1>
<h2>A site dedicated to learning how to develop applications for the web.</h2>
</header>
<ul>
<li><a href="">Home</a></li>
<li><a href="">About This Site</a></li>
<li><a href="">Contact Information</a></li>
</ul>
<h1>Using Semantic HTML Elements</h1>
<h2>A complete guide on indicating meaning for your web page's content</h2>
<h3>December 18, 2017</h3>
<h4><code>header</code></h4>
<p>Use header elements for content that is consistent across your web page.</p>
<p>Headers may also contain your site's navigation components.</p>
<h4><code>footer</code></h4>
<p>Use footer elements to store "footer" content, like author/copyright info.</p>
<h4><code>nav</code></h4>
<p>Use nav elements to store elements associated with site navigation.</p>
<p>Navigational <code>anchor</code> tags are often wrapped in an unordered list element.</p>
<footer>
<p>© Educative.io 2017</p>
</footer>
</body>
</html>