personal-website/index.html

66 lines
2.6 KiB
HTML
Raw Normal View History

2023-04-24 13:51:06 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-04-24 13:51:06 -05:00
<title>Sayantan Santra | PhD Student at the University of Oklahoma</title>
<script>
2023-04-26 14:13:49 -05:00
function loader() {
// put year of study
2023-04-24 13:51:06 -05:00
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];
2023-04-26 14:13:49 -05:00
// put last modified
const last_modified_span = document.getElementById("last-modified");
const last_modified = new Date(document.lastModified);
last_modified_span.innerHTML = last_modified.toDateString();
2023-04-24 13:51:06 -05:00
}
</script>
2023-04-26 14:13:49 -05:00
<link rel="stylesheet" type="text/css" target="_blank" href="styles.css">
2023-04-24 13:51:06 -05:00
</head>
2023-04-26 14:13:49 -05:00
<body onload="loader()">
<div class="container">
<div class="header">
<img src="https://www.gravatar.com/avatar/a5114f8f2ab803638d442ab3cb39d329?s=200" alt="gravatar" />
<h2 class="pc-name">Sayantan Santra (সায়ন্তন সাঁতরা)</h2>
<h3 class="mobile-name">Sayantan Santra<br />(সায়ন্তন সাঁতরা)</h3>
</div>
<div class="row">
2023-07-18 16:57:21 -05:00
<div class="column">Office: PHSC 910</div>
2023-04-26 14:13:49 -05:00
<div class="column" name="mail">Email: <a href="mailto:sayantan.santra@ou.edu">sayantan.santra@ou.edu</a>
</div>
</div>
2023-04-25 00:45:18 -05:00
<hr />
<p>I'm a <span id="year-span"></span> year PhD student in the Department of Mathematics
at the University of Oklahoma, working under my advisor
2023-04-26 14:13:49 -05:00
<a href="https://math.ou.edu/~kmartin">Dr. Kimball Martin</a>.
2023-04-25 00:45:18 -05:00
</p>
<p>Previously, I received an M. Math. from the Indian Statistical Institute.</p>
2023-04-25 00:45:18 -05:00
<p>I'm interested in Number Theory. Some of my specific areas of interest include:
<ul>
<li>Elliptic Curves</li>
<li>L-functions of Newforms</li>
2023-07-18 17:02:59 -05:00
<li>-adic Representations</li>
2023-04-25 00:45:18 -05:00
</ul>
</p>
<a href=https://github.com/SinTan1729/CV/raw/main/CV.pdf>You can take a look at my CV here.</a>
2023-06-04 01:43:32 -05:00
<br />
<a href="https://github.com/SinTan1729">Also, you can check out my GitHub profile here.</a>
2023-04-25 00:45:18 -05:00
<hr />
2023-04-26 14:13:49 -05:00
<i>This page was last updated on <span id="last-modified"></span>.</i>
2023-04-25 00:45:18 -05:00
</div>
2023-04-24 13:51:06 -05:00
</body>
2023-07-18 16:57:21 -05:00
</html>