-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (95 loc) · 2.41 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
<!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: #fff;
}
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>
<!-- <img src="me.png" alt="me"> -->
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
</nav>
<audio autoplay loop>
<source src="little.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<section>
<img src="me.png" alt="me">
<h2>My Story in Code and Pixels</h2>
<p>Embark on a journey into the realm of code and pixels with Ethan Shayan Sarnevesht, a passionate Computer Science
student at UCLA. Join me as I weave a narrative of software engineering, innovation, and personal growth.</p>
<h2>The Canvas of My Projects</h2>
<p>Each project is a brushstroke, painting a vivid picture of my skills and experiences. From real-time
collaboration in React and Firebase to contributing to open-source accessibility projects, I bring my code to
life.</p>
<h2>Harmony of Collaboration</h2>
<p>Let's collaborate! I'm always open to new opportunities and partnerships. Reach out to me at <a
href="mailto:[email protected]">[email protected]</a> and let's create something extraordinary together.
</p>
</section>
<footer>
<p>Ethan's Journey in Code and Pixels</p>
</footer>
</body>
</html>