-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (57 loc) · 2.78 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="pl">
<head>
<meta name="description"
content="Prosta strona internetowa używająca Chart.js do przedstawienia wygenerowanych danych w JS na podstawie paru zasad">
<meta name="keywords" content="dane prezentacja analiza">
<meta name="author" content="Adam">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="css/index.css" />
<link type="text/css" rel="stylesheet" href="css/charts.css" />
<link href='https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<title>TI-frontend</title>
</head>
<body>
<div id="top-pers">
<nav class="mynav" id="mynavb">
<a href="index.html" class="active">Strona główna</a>
<a href="data.html">Generowanie danych</a>
<a href="charts.html">Charts</a>
<a href="chartsjs.html">ChartJS</a>
<a href="kontakt.html">Kontakt</a>
<a href="javascript:void(0);" class="icon">
<i class="fa fa-bars"></i>
</a>
</nav>
</div>
<div class="Vignette mainPosition">
<div class="firstMain">
<h1>O stronie słów kilka...</h1>
<p>Strona poświęcona generacji <a href="data.html">pewnych</a> danych i ich <a
href="charts.html">przedstawianiu</a> wykorzystując wykresy Chart.js.</p>
</div>
<div class="canvas-container" id="bar-chart" style="z-index:0; height: 25vh;"><canvas id="myChart"
onclick="controlInterval();"></canvas></div>
</div>
<div class="footer Vignette">
<div class="footer-content">
<h3>Kontakt</h3>
<p><strong>Adres email</strong>: <a href="mailto:[email protected]">A. Wacławczyk</a>
</p>
<p><strong>Github</strong>: <a href="https://github.com/varmeusz">Varmeusz</a></p>
</div>
<div class="logo-container"><a id="chartjslogo" href="https://www.chartjs.org/">
<figure><img src="images/chartjs-logo.svg" alt="logo-chartjs">
<figcaption style="text-align: center;">ChartJS</figcaption>
</figure>
</a></div>
<div class="copyright-me">© A. Wacławczyk</div>
</div>
<script src="js/skrypt1.js"></script>
<script src="js/index-chart.js"></script>
</body>
</html>