-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="content-language" content="en">
<meta name="keywords" content="website, ui, ux, ux-ui, chart, graph">
<meta name="author" content="Aitisam Yaseen">
<meta name="publisher" content="Aitisam Yaseen">
<meta name="copyright" content="Aitisam Yaseen">
<meta name="description" content="Analytical chart's UX/UI Design.">
<meta name="page-topic" content="UX/UI">
<meta name="page-type" content="Web Design">
<meta name="audience" content="Everyone">
<meta name="robots" content="index, follow">
<title>Analytics Chart</title>
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<main>
<h1>task #018 <span>analytics chart</span></h1>
<canvas id="yearlySalesChart"></canvas>
<ul>
<li>The verticle line with the values from 60 to 150 shows income in <strong>dollars</strong> from (60K to 150K)</li>
<li>The horizontal line with the values from 1 to 12 shows the months.</li>
</ul>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>