-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.16 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
<!DOCTYPE html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<html>
<head>
<script src="https://kit.fontawesome.com/6ea8043d2e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<title>
Dee's website
</title>
<!-- <script>
function toggleTheme() {
var theme = document.getElementById('body').style.backgroundColor;
if (theme !== 'white') {
document.getElementById('body').style.backgroundColor = 'white';
}
else {
document.getElementById('body').style.backgroundColor = 'rgb(25, 25, 25)';
}
}
</script> -->
</head>
<body id="body">
<header>
<div class="topnav" id="topnav">
<a href='index.html'>home</a>
<a href='about.html'>about</a>
<a href='projects/portfolio.html'>portfolio</a>
<!-- <label class="switch" onclick=toggleTheme()>
<input type="checkbox">
<span class="slider round"></span>
</label> -->
</div>
</header>
<div class="index">
<h1>
Hi, I'm Dee.
</h1>
<br>
<h3>
I'm an senior majoring in Electrical & Computer Engineering and Music Tech at Carnegie Mellon.<br><br>
</h3>
</div>
<footer>
<a target="_blank" href="assets/resume.pdf" download="resume.pdf"><i class="fas fa-file" title="Resume"></i></a>
<a target="_blank" href="https://github.com/20iyerd"><i class="fab fa-github-square" title="GitHub"></i></a>
<a target="_blank" href="https://www.linkedin.com/in/deetya-dee-iyer-026069156"><i class="fab fa-linkedin" title="LinkedIn"></i></a>
<a target="_blank" href="mailto:[email protected]"><i class="fas fa-envelope" title="Email"></i></a>
<a target="_blank" href="https://www.fiverr.com/driyer"><i class="fas fa-folder-open" title="Fiverr"></i></a>
<!-- <a target="_blank" href="https://open.spotify.com/user/hfo5qfym4fmdfdl7p3bwatqih"><i class="fab fa-spotify" title="Spotify"></i></a> -->
</footer>
</body>
</html>