-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
56 lines (37 loc) · 1.8 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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link href="./Images/favicon.bmp" type="image/x-icon" rel="icon" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="../node_modules/handlebars/dist/handlebars.js"></script>
<script src="../node_modules/sammy/lib/sammy.js"></script>
<script src="../node_modules/sammy/lib/plugins/sammy.handlebars.js"></script>
<script src="../node_modules/handlebars/dist/handlebars.runtime.min.js"></script>
<link rel="stylesheet" href="CSS/Main.css"></link>
<title>Vaim Soft</title>
</head>
<body>
<div id="root">
<nav>
<div id="menu">
<div> <a id="index" class="components" href="#/index">Начало</a> </div>
<div> <a id="services" class="components" href="#/services">Услуги</a> </div>
<div> <a id="aboutus" class="components" href="#/aboutus">За нас</a> </div>
<div> <a id="contacts" class="components" href="#/contacts">Контакти</a></div>
<div><button id="lang" >EN</button> </div>
</div>
</nav>
</br>
<div id="content"> </div>
</div>
<footer>
<div id="footer"><strong id="company">ВаимСофт</strong>®</div>
<div id="author">© <strong id="authorName">2019 Валентин Стоев</strong></div>
</footer>
<script type="module" src="App.js"></script>
<script src="node_modules/sammy/vendor/templating/handlebars.js"></script>
</body>
</html>