-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.3 KB
/
index.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
<!doctype html>
<html lang="en"> <!--And hungarian localization is coming soon-->
<head>
<meta charset="utf-8">
<meta name="description" content="MC's fav stuffs">
<meta name="keywords" content="HTML,CSS,JavaScript,MC2UH,FAVS,FAVORITES">
<meta name="author" content="MC2UH">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css?v=1.0">
<title>Favs</title>
</head>
<!--This is a comment. Comments are not displayed in the browser-->
<body id="top">
<script src="js/scripts.js"></script>
<h1>Hello World</h1>
<p>So let the fun begin!</p>
<header>...</header>
<nav>
<a href="index.html">Home</a> <!--This is a warm welcome site-->
<a href="index.html">Site1</a> <!--Maybe the websites where i have an account-->
<a href="index.html">Site2</a> <!--List of my personal favorite books, movies, series, games cover pictures-->
<a href="index.html">Site4</a>
</nav>
<article>...</article>
<section>...</section>
<aside>...</aside>
<footer>
<nav>
<a href="index.html">Home</a>
<a href="index.html">Site1</a>
<a href="index.html">Site2</a>
<a href="index.html">Site4</a>
</nav>
<a href="#top">Back to top</a>
<small>© 2017, MC2UH</small>
</footer>
</body>
</html>