-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic-HTML.html
79 lines (56 loc) · 1.89 KB
/
basic-HTML.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en"> <!-- lang="uk-UA" -->
<head>
<meta charset="utf-8">
<meta name="author" content="SKindij">
<meta name="description" content="short description of this page">
<meta name="keywords" content="listed, keywords, for, search, engines">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>name of this page for browser</title>
<link rel="canonical" href="https://some-site.com/">
<link rel="shortcut icon" type="image/png" href="some-folder/some-favicon.png">
<link rel="stylesheet" href="folder-CSS/main-style.css">
<!--
<link rel="alternate" hreflang="ru" href="https://some-site.com/ru_INT/">
<link rel="alternate" hreflang="en" href="https://some-site.com/en_INT/">
-->
</head>
<body>
<div class="main-container">
<!-- HEADER -->
<header class="flex flex-vertical-center">
<!-- Site navigation menu -->
<nav class="site-navigation flex flex-horizontal-center">
<ul>
<li class="nav-item"><a href="Ukraine.html">Ukraine</a></li>
<li class="nav-item"><a href="USA.html">USA</a></li>
<li class="nav-item"><a href="Spain.html">Spain</a></li>
</ul>
</nav>
</header>
<!-- MAIN SECTION -->
<main>
<!-- about something -->
<section class="">
<div class="">
</div>
</section>
<!-- about something -->
<section class="">
<div class="">
</div>
</section>
<!-- additional content -->
<aside class="">
</aside>
</main>
<!-- FOOTER -->
<footer>
<div class="">
</div>
<footer>
</div>
<script src="folder-JS/main.js"></script>
</body>
</html>