-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
111 lines (94 loc) · 2.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Ethan Shayan Sarnevesht</title>
<style>
body {
font-family: 'Quicksand', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #ff9068, #a259ff);
color: #a53c3c;
}
header {
background-color: #ff5e62;
text-align: center;
padding: 1em 0;
}
footer {
background-color: #ff5e62;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
section {
padding: 20px;
max-width: 800px;
margin: auto;
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
border-radius: 12px;
margin-top: 20px;
}
h1,
h2 {
color: #ff5e62;
}
p {
line-height: 1.6;
color: #333;
}
nav {
text-align: center;
margin-top: 10px;
background-color: #ff9068;
padding: 10px 0;
}
nav a {
text-decoration: none;
color: #fff;
margin: 0 20px;
font-weight: bold;
font-size: 1.2em;
transition: color 0.3s ease-in-out;
}
nav a:hover {
color: #a259ff;
}
</style>
</head>
<body>
<header>
<h1>About Ethan Shayan Sarnevesht</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="#">About</a>
</nav>
<section>
<h2>Who Am I?</h2>
<p>Hi, I'm Ethan Shayan Sarnevesht, a Computer Science student at UCLA. I have a passion for software engineering
and a keen interest in cutting-edge technologies.</p>
<h2>My Projects</h2>
<p>During my academic journey, I've had the opportunity to work on various exciting projects. Here are a few ideas for my final project in DH:</p>
<ul>
<li><strong>Project 1:</strong> Developed a web application for real-time collaboration using React and Firebase.
</li>
<li><strong>Project 2:</strong> Contributed to an open-source project focused on enhancing accessibility features
in web applications.</li>
<li><strong>Project 3:</strong> Created a personal portfolio website to showcase my skills and projects (you're
currently on it!).</li>
</ul>
<h2>Get in Touch</h2>
<p>I'm always open to new opportunities and collaborations. Feel free to reach out to me at <a
href="mailto:[email protected]">[email protected]</a>.</p>
</section>
<footer>
<p>Ethan's Footer</p>
</footer>
</body>
</html>