-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (38 loc) · 1.69 KB
/
index.html
File metadata and controls
49 lines (38 loc) · 1.69 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<title>Eco APP</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<div id="preloader" class="preloader" style="display: none;">
<div class="preloader__row">
<div class="preloader__item"></div>
<div class="preloader__item"></div>
</div>
</div>
<header class="header">
<h1 id="mainMenuButton"><img src="assets/img/logo-ecoApp.svg" /></h1>
</header>
<div id="app"></div>
<script type="module" src="./src/main.js"></script>
<!-- Container for reference links of styles -->
<div id="containerWithReferenceLinks"></div>
<footer class="footer">
<p class="pfooter">Projekt realizowany w ramach<a href="https://www.coderscamp.edu.pl/" target="_blank"><img
class="logo" src="./resource/coder-camp.svg"></a>
<a href="https://github.com/DariuszKny/Coderscamp2021-WebDevelopmentBasic-EcoSchool.git" target="_blank">
<img class="logo-github" src="./resource/github_logo.png" /></a>
</p>
</footer>
</body>
</html>