-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.13 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
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ecovisum Ltd.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="styles.css">
<body>
<nav id="header">
<div class="dropdown">
<a href="#page-01">Home</a>
<div class="submenu">
<a href="#page-02">Page 02</a>
<a href="#page-03">Page 03</a>
<a href="#page-04">Page 04</a>
</div>
</div>
<a href="#page-05">Page 05</a>
<a href="#page-06">Page 06</a>
</nav>
<main id="main">
<section id="page-01"></section>
<section id="page-02"></section>
<section id="page-03"></section>
<section id="page-04"></section>
<section id="page-05"></section>
<section id="page-06"></section>
</main>
<a class="top" href="#page-01">TOP</a>
<script src="js/showdown.min.js"></script>
<script src="js/content.js"></script>
<script src="js/mdconvert.js"></script>
<script src="js/shrinkheader.js"></script>
<!-- <script src="js/scripts.concat.js"></script> -->
</body>
</html>