-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 3.03 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>J.R. Ruggiero</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/home.css">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<!-- <a class="navbar-brand" href="#">Navbar w/ text</a> -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="history.html">History</a>
</li>
<li class="nav-item">
<a class="nav-link" href="hobbies.html">Hobbies</a>
</li>
</ul>
<a href="/pdf/Ruggiero_jr_resume.pdf" target="_blank">
<span class="navbar-text">
Resume
</span>
</a>
</div>
</div>
</nav>
<!-- <img src="images/luckysunset.jpg" class="main-background" alt=""> -->
<div class="title-name">
<img src="./images/ME.jpg" class="title-photo">
<div>
<h1>J.R. Ruggiero</h1>
<p>Software Developer / Hiring Manager</p>
<P>Coarsegold, CA</P>
</div>
</div>
<div class="title-blurb">
<p>Based in the Yosemite foothills of Central California, I have professional experience as both a full stack web and mobile application developer and a hiring manager for a team of over 100 people.</p>
</div>
<div class="title-button-row">
<a href="./pdf/Ruggiero_jr_resume.pdf"><button class="title-button-blue">Resume</button></a>
<a href="mailto@lruggierojr@gmail.com"><button class="title-button-white">Email</button></a>
<a href="https://www.linkedin.com/in/leonard-ruggiero-jr-bba192152/" target="_blank"><button class="title-button-blue">LinkedIn</button></a>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>