-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (80 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
92 lines (80 loc) · 2.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles/styles.css">
<title>Ananya Lall</title>
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
</head>
<body>
<header>
<p class="prompt"><span>~/ananya-lall $</span> // student. curious about everything.</p>
<h1>Hi, I'm <span style="color:var(--accent)">Ananya</span>.<br>
I like learning things and occasionally building them.</h1>
<p class="bio">
Studying Integrative Biology (Ecology, Evolution & Organismal Biology) at Cal (Class of '28).
Interested in animal behavior, game dev, data science.
</p>
<nav class="links">
<a href="mailto:ananya.lall@gmail.com">email</a>
<a href="https://github.com/lall-a" target="_blank" rel="noopener">github</a>
<a href="https://linkedin.com/in/ananya-lall" target="_blank" rel="noopener">linkedin</a>
</nav>
</header>
<!-- PROJECTS -->
<!--
<section id="projects">
<p class="section-heading">projects</p>
<div class="project">
<p class="project-title">
<a href="https://github.com/yourname/project-one">project-one</a>
<span class="project-lang">python</span>
</p>
<p class="project-desc">What it does in one or two sentences. What you learned or why you built it.</p>
</div>
<div class="project">
<p class="project-title">
<a href="https://github.com/yourname">more on github -></a>
</p>
</div>
</section>
-->
<!-- EDUCATION -->
<section id="education">
<p class="section-heading">education</p>
<div class="edu-row">
<div>
<p class="edu-name">B.A. Integrative Biology</p>
<p class="edu-sub">University of California, Berkeley</p>
</div>
<p class="edu-date">2024 -- 2028</p>
</div>
<!-- skills -->
<!--
<div class="skills" style="margin-top: 1rem;">
<span class="skill">Python</span>
<span class="skill">JavaScript</span>
<span class="skill">C</span>
<span class="skill">Git</span>
<span class="skill">Linux</span>
<span class="skill">SQL</span>
</div>
-->
</section>
<!-- WRITING -->
<!--
<section id="writing">
<p class="section-heading">writing</p>
<div class="post">
<a href="/posts/post-one">Post title goes here</a>
<span class="post-date">May 2025</span>
</div>
</section>
-->
<footer style="display:flex; justify-content:space-between;">
<span>lall-a.github.io</span>
<span>last edited: may 17 2026</span>
</footer>
</body>
</html>