-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (69 loc) · 4.28 KB
/
index.html
File metadata and controls
81 lines (69 loc) · 4.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
<title>Luis Minaya</title>
<link rel="icon" type="image/x-icon" href="/images/LNM2.1.jpg">
</head>
<body>
<div id="mainHeader">
<h1>Luis N. Minaya</h1>
<div id="menu">
<!-- this is for the menu bar-->
<a href="/index.html" class="menuButton" id="index-link">Home</a>
<a href="/books.html" class="menuButton" id="books-link">Books I've Read</a>
<a href="/cooking.html" class="menuButton" id="cooking-link">Pictures of my Cooking</a>
<a href="/links.html" class="menuButton" id="links-link">Links</a>
</div>
</div>
<div class="container">
<h1 style="font-size: 130%;">Software Engineer in Training</h1>
<p>Hello everyone, I'm Luis Minaya. For 10 years, I successfully opened and ran a hardware store in New York City,
managing several employees and generating profit in my first year of business. I'm now channeling the
problem-solving and leadership skills I've honed into the world of programming.</p>
<p>My first taste of coding was my freshman year at Haverford College. I was the only student
without a strong computer science background in a small class size of about seven.
I remember struggling to keep up, but at the same time truly loving the challenge and thrill of
the problem-solving found in coding. Years later, I still recall the playable checkers program
I created, and how proud I was.</p>
<p>Now, I'm dedicated to mastering programming and building innovative solutions. This webpage is
a piece of that journey as I learn and grow.</p>
<h1 style="font-size: 130%; padding-top: 50px;">Where I'm from</h1>
<p>This is the city I live in as depicted by AI image generators.</p>
<br>
<div class="imageContainer" style="padding-bottom: 50px">
<img src="/images/aiCentralParkTn.jpg" alt="Central Park generated by AI." title="AI Generated Central Park"
style="width: 100%; height: auto; max-width: 450px;">
<img src="/images/aiNycSkylineTn.jpg" alt="NYC skyline generated by AI." title="AI Generated NYC Skyline"
style="width: 100%; height: auto; max-width: 450px;">
</div>
</div>
<!-- Bootstrap's popper script-->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<!-- Bootstrap script-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!--Script to add currentPage class to current URL in order to bold the link font-->
<script>
document.addEventListener("DOMContentLoaded", function() {
const currentPage = window.location.pathname.split("/").pop();
const linkId = currentPage.split(".")[0] + "-link";
const currentLink = document.getElementById(linkId);
if (currentLink) {
currentLink.classList.add("currentPage");
}
});
</script>
<!--Script for changing the way links open if you are on mobile-->
<script>
if (window.innerWidth <= 768) {
let targetTypes = document.querySelectorAll('a[target="_blank"]');
for (let targetType of targetTypes) {
targetType.setAttribute('target', '_top');
}
}
</script>
</body>
</html>