-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 867 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Pie Prices</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
</head>
<body>
<img
src="assets/images/IMG_6626_Original.jpg"
alt="Pi"
style="width: 40%"
/>
<h1>Today's Amazon/Canakit Raspberry Pi 4 Prices</h1>
<div id="Date"></div>
<div id="Pie"/>
<script src="pie_page.js"></script>
<style>
body,
h1,
h5 {
font-family: "Roboto", sans-serif;
}
body {
height: 100%;
display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
}
li {
list-style-type: circle;
}
img {
display: block;
margin-left: left;
margin-right: auto;
}
</style>
</body>
</html>