-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfun.html
More file actions
33 lines (33 loc) · 1.56 KB
/
fun.html
File metadata and controls
33 lines (33 loc) · 1.56 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 http-equiv="X-UA-Compatible" content="ie=edge">
<title>HTML Resources</title>
</head>
<body>
<!-- The semantics of HTML elements are important. You can help yourself, other developers, and search engines understand the structure of your website by using section elements. -->
<header>
<!-- You can denote the content in the navbar with the nav element. -->
<nav>
<img src="your/logo/may/go/here.png" alt="Your logo in your navbar!"/>
</nav>
</header>
<!-- The main element is where the bulk of the content for your website is located. -->
<main>
<!-- Articles can denote blog posts, news articles, etc. that tell search engines that this should be an article. -->
<article>
<h3>Article heading.</h3>
<p>Article text.</p>
</article>
<section>
<!-- div elements are just dividers. They do not have any semantic meaning, but they are commonly used in HTML - often as wrappers to contain other elements or sections in your code. -->
<div class="container"></div>
</section>
</main>
<footer>
The footer commonly contains sitemaps (links to the main pages of your website), copyright and privacy policy notices, and more. This is information that is useful to access on all of the pages on the website.
</footer>
</body>
</html>