-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
52 lines (48 loc) · 1.98 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>about me</title>
</head>
<body>
<header>
<h1>irena li</h1>
<nav id = 'nav'>
<a href = "index.html">home</a>
<a href = "work.html">work</a>
<a href = "about.html">about</a>
<a href = "contact.html">contact</a>
</nav>
</header>
<main>
<div class = 'container'>
<h2>about</h2>
<p>at michigan, I'm working towards a B.S. in computer science and cognitive science & pursuing minors in writing and digital studies.</p>
<p>after graduation, I hope to work in a role that uses tech to promote reliable, accessible journalism.</p>
<p>some of my interests include:</p>
<ul>
<li>urbanism and walkable cities</li>
<li>HBO's <i>Succession</i></li>
<li>the shadow docket</li>
<li>pop music production</li>
<li>google street view</li>
<li>creating crossword puzzles</li>
<ol style = "color: #795996">
<li> <a href="https://games.michigandaily.com/crosswords/2023/03/12/">so call me maybe</a> </li>
<li> <a href="https://games.michigandaily.com/crosswords/2023/11/19/">bubbles and a book</a> </li>
<li> <a href="https://games.michigandaily.com/crosswords/2024/03/17">the ides of march</a></li>
<li> <a href="https://games.michigandaily.com/crosswords/mini/">minis</a> </li>
</ol>
</ul>
</div>
</main>
<footer>
<div class = 'container'>
<div class = 'horizontal-line'></div>
last updated: april 2024
</div>
</footer>
</body>
</html>