-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (116 loc) · 3.9 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tanmay Jyothis - Computer Science & Mathematics</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0 auto;
padding: 20px;
max-width: 800px;
}
nav {
background-color: #f4f4f4;
padding: 10px;
margin-bottom: 20px;
}
nav a {
margin-right: 15px;
text-decoration: none;
}
img {
max-width: 200px;
border-radius: 50%;
}
.section {
margin-bottom: 30px;
}
.courses-container {
display: flex;
gap: 2rem;
margin-top: 1rem;
}
.course-column {
flex: 1;
background: #f8f8f8;
padding: 1.5rem;
border-radius: 8px;
}
.course-column h3 {
margin-top: 0;
color: #2c3e50;
}
.course-column ul {
padding-left: 1.2rem;
}
@media (max-width: 600px) {
.courses-container {
flex-direction: column;
}
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
</nav>
<div class="container">
<header class="section">
<img src="your-photo.jpg" alt="Tanmay Jyothis">
<h1>Tanmay J</h1>
</header>
<section class="section">
<h2>About Me</h2>
<p>
Hello! I am a Computer Science and Mathematics major at the University of Maryland, College Park,
with interests spanning programming languages, compiler design, machine learning,
and probabilistic systems. Currently, I am exploring Scheme & Racket while developing
interpreters and compilers in these languages (having previously built one in OCaml),
and taking graduate courses in Machine Learning and Stochastic Processes.
</p>
<p>
I am passionate about solving complex problems through programming and mathematical modeling,
and am actively seeking industry opportunities.
</p>
</section>
<!-- New Courses Section -->
<section class="section">
<h2>Relevant Courses</h2>
<div class="courses-container">
<div class="course-column">
<h3>Computer Science</h3>
<ul>
<li>CMSC828C: Statistical Pattern Recognition (Machine Learning, Graduate level)</li>
<li>CMSC430: Compilers</li>
<li>CMSC451: Design and Analysis of Algorithms</li>
<li>CMSC320: Introduction to Data Science</li>
</ul>
</div>
<div class="course-column">
<h3>Mathematics</h3>
<ul>
<li>STAT650: Applied Stochastic Processes (Graduate Level)</li>
<li>ENEE620: Probability Theory (Measure Theoretic, Graduate Level)</li>
<li>MATH405: Linear Algebra</li>
<li>MATH410: Advanced Calculus I</li>
</ul>
</div>
</div>
<p>
My current cumulative GPA is 3.655.
</p>
</section>
<section class="section">
<h2>Contact</h2>
<p>
Email: <a href="mailto:[email protected]">[email protected]</a><br>
GitHub: <a href="https://github.com/tjyothis4">tjyothis4</a>
</p>
</section>
</div>
</body>
</html>