From 6ddf25fa734e81fd41e3faa26a1c1e4eee9de275 Mon Sep 17 00:00:00 2001 From: SinTan1729 <sayantan.santra689@gmail.com> Date: Mon, 24 Apr 2023 13:51:06 -0500 Subject: [PATCH] Initial page --- index.html | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..b35e5d7 --- /dev/null +++ b/index.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html> + +<head> + <meta charset="UTF-8" /> + <title>Sayantan Santra | PhD Student at the University of Oklahoma</title> + <script> + function putYear() { + const year_span = document.getElementById("year-span"); + const current_time = Date.now(); + const year_num = Math.floor((parseInt(current_time) - 1627794000000) / 31536000000); + const year_array = ["first", "second", "third", "fourth", "fifth", "sixth"]; + year_span.innerHTML = year_array[year_num]; + } + </script> +</head> + +<body onload="putYear()"> + <img src="https://www.gravatar.com/avatar/a5114f8f2ab803638d442ab3cb39d329?s=300" /> + <h1>Sayantan Santra</h1> + <p>Office: PHSC 903</p> + <p>Email: sayantan[dot]santra[at]ou.edu</p> + <hr /> + <p>I am a <span id="year-span"></span> year PhD student in the Department of Mathematics + at the University of Oklahoma.</p> + <p>Previously, I've done M. Math. from the Indian Statistical Institute.</p> + + <p>I'm interested in Number Theory. Some of my specific areas of interest include: + <ul> + <li>Elliptic Curves</li> + <li>Hecke Eigenforms</li> + <li>L-functions of Newforms</li> + </ul> + </p> + + <a href=https://github.com/SinTan1729/CV/raw/main/CV.pdf>You can take a look at my CV here.</a> +</body> + +</html> \ No newline at end of file