-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (60 loc) · 1.76 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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>Data Visualization Projects</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
.header {
margin: 2em 0;
}
.projects {
display: grid;
align-items: stretch;
grid-template-columns: auto auto auto;
}
.projects span {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
margin: 1em;
}
.projects a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
min-height: 240px;
}
.projects img {
height: 200px;
}
footer {
font-size: 0.8em;
}
</style>
</head>
<body>
<div class="content">
<h1 class="header">Data Visualization Projects</h1>
<div class="projects">
<span><a href='playo/index.html'><img src='playo/screenshot.png' />Playo Data Exploration</a><div title='Mon, 14 Feb 2022 03:57:36 +0530'>4 days ago</div></span>
<span><a href='india-pm/index.html'><img src='india-pm/screenshot.png' />Prime Ministers of India</a><div title='Wed, 20 Sep 2017 12:14:04 +0530'>4 years, 5 months ago</div></span>
<span><a href='blog/index.html'><img src='blog/screenshot.png' />Word clouds for my blog</a><div title='Mon, 11 Sep 2017 20:52:12 +0530'>4 years, 5 months ago</div></span>
<span><a href='30-years-floods/index.html'><img src='30-years-floods/screenshot.png' />Floods in India</a><div title='Sun, 3 Sep 2017 18:54:12 +0530'>4 years, 6 months ago</div></span>
</div>
<footer>Last updated: Friday 18 February 2022 11:54:57 AM IST</footer>
</div>
</body>
</html>