-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·53 lines (53 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lorenzo Mondragon</title>
<meta name="description" content="Lorenzo Mondragon is a Web Developer and Student based in Fort Collins, CO">
<meta name="keywords" content="Developer, Software, Colorado">
<meta name="author" content="Lorenzo Mondragon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="topnav" id="myTopnav">
<div class="name">
<a href="index.html" class="active">Lorenzo Mondragon</a>
</div>
<a href="resume/index.html">Resume</a>
<a href="projects/index.html">Coding Projects</a>
<a href="bookshelf/index.html">Bookshelf</a>
<a href="youtube/index.html">YouTube</a>
<a href="contact/index.html">Contact</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="content">
<div class="hero-image">
<img src="images/lorenzo-mondragon-headshot.jpg" alt="Headshot of Lorenzo wearing a NASA polo">
</div>
<main>
<h1>About Me</h1>
<p>As a skilled backend developer with experience in C#, Entity Framework, Microsoft SQL Server, and building RESTful API’s, I'm passionate about leveraging technology to solve complex problems. My knowledge in these technologies has enabled me to develop high-quality applications that have served hundreds of users.
I'm committed to staying up-to-date with the latest industry trends and technologies, and I'm always eager to learn and grow as a software engineer. Whether it's exploring .NET or becoming involved in projects such as CSU's VR Challenge, I'm constantly seeking out opportunities to expand my skills and knowledge.
If you're looking for a dedicated and talented developer to join your team, let's connect and discuss how I can contribute to your organization's success.
</p>
</main>
</div>
<footer>
<p>2023 | Mondragon</p>
</footer>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += "responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>