-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (103 loc) · 5.06 KB
/
index.html
File metadata and controls
114 lines (103 loc) · 5.06 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Benjamin Estrada</title>
<meta name="viewport" content="width=device-width, intital-scale=1.0">
<link rel="icon" href="/Assets/images/faviconestradab.ico" type="image/x-icon" sizes="32x32">
<link rel="stylesheet" href="main.css">
<script src="scripts.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<header>
<nav>
<a href="#home">
<img src="/Assets/images/estradab.png" alt="estradab">
</a>
<ul class="menu">
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a id="contact-button" href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<canvas id="generative-art"></canvas>
<script src="generative-art.js"></script>
<div id="container--main">
<section id="home">
<div id="intro-container">
<h1 id="home" class="animate__animated animate__bounce">Hello, My name is Benjamin Estrada 👋</h1>
<p id="intro"></p>
</div>
</section>
<section id="about">
<h2 id="about">About Benjamin Estrada</h2>
<p id="bio">Hello, My name is Benjamin Estrada, I am a Mexican-American 🇲🇽🇺🇸 from Virginia. I am a
Senior at Virginia Commonwealth University (VCU) majoring in Computer Science with a minor in
Mathematics. Currently, I'm searching for full-time positions in Full Stack development or Cloud
Engineering 👨🏾💻</p>
</section>
<section id="spacer"></section>
<section id="portfolio">
<h2 id="portfolio">My Projects</h2>
<div class="project-container">
<div class="project">
<h3>Unveiling ESG Analytics</h3>
<p>Executed an AI model to extract ESG keywords.</p>
<a class="read-more" href="#">Read More</a>
<div class="modal">
<div class="modal-content">
<p>Executed an AI model using Python and GCP to extract ESG keywords
from diverse and unstructured data sources. Formulated an intuitive user interface using
Python and Jupyter Notebook, amplifying the depth of sustainability
analysis, and streamlining more precise reporting for enhanced communication of our
findings and insights.</p>
</div>
<a class="close-modal" href="#">Close</a>
</div>
</div>
<div class="project">
<h3>AI Generated CICD Pipelines</h3>
<p>Automated CICD Pipelines using AI.</p>
<a class="read-more" href="#">Read More</a>
<div class="modal">
<div class="modal-content">
<p>This is more information about the project.</p>
</div>
<a class="close-modal" href="#">Close</a>
</div>
</div>
<div class="project">
<h3>Online Portfolio Website</h3>
<p>Developed a dynamic portfolio.</p>
<a class="read-more" href="#">Read More</a>
<div class="modal">
<div class="modal-content">
<p>This is more information about the project.</p>
</div>
<a class="close-modal" href="#">Close</a>
</div>
</div>
</div>
</section>
<section id="contact" class="contact-hidden">
<div class="content-container">
<span id="close-contact">x</span>
<h1>Contact</h1>
<p>Feel free to reach out to me via email or LinkedIn or check out my github & resume!
<div n=""></div> I'd appreciate any feedback.</p>
<p id="email">👉<a
href="https://mail.google.com/mail/u/1/#inbox?compose=DmwnWstwMzvDTthlnhfxDNZRfqsNmtGDFsMjlQjTGlXtmSFDsGxbljGzQZSVdqLNhsLwQdpBfrmQ"
target="_blank">benjaminnestrada@gmail.com</a> </p>
<div id="socials--list">
<a href="https://www.linkedin.com/in/estradaben" target="_blank">LinkedIn</a>
<a href="https://www.github.com/io-benjamin" target="_blank">GitHub</a>
<a href="./Assets/images/Benjamin Estrada Resume 2023-2024.pdf" target="_blank">Download Resume</a>
</div>
</div>
</section>
</body>
</html>