-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (100 loc) · 5.52 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
<!DOCTYPE html>
<html lang="en-US">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
<!--fonts/icons-->
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&family=Montserrat:ital,wght@1,100&display=swap"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://kit.fontawesome.com/69f28465c2.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Lauren Libretti</title>
<body class="gradient">
<header>
<div class="scale-100">
<h1 class="">Lauren Libretti</h1>
<hr class="hr-expand">
<nav class="navbar navbar-expand-sm navbar-light sm-light">
<a class="navbar-brand" href="#"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse md:text-2xl" id="navbarTogglerDemo02">
<ul class="navbar-nav mx-auto mt-2 mt-lg-0 d-flex">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="webdev.html">Web Dev</a>
</li>
<li class="nav-item">
<a class="nav-link" href="lx.html">Lighting</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<hr>
</div><!--container-->
</header>
<section>
<div class=" grid-container shadow-lg p-3 mt-2 mx-5 bg-body rounded">
<div class="left">
<img src="images/LaurenHeadshots002.jpg" alt="image of Lauren">
</img>
</div>
<div class="right">
<p>Like many people at the beginning of quarantine, I tried making sourdough. After burning my first
loaf, I
decided to swap out my cooking apron and learn to code. I started by self-learning and as I gained
more
skills I realized this was something I wanted to pursue more than a hobby. I wanted more formal
training
and enrolled in a bootcamp to study Full-Stack Development.
<br>My passion for coding comes from my experience as a lighting designer, I
was using
technology to create something aesthetically pleasing and functional. I receive the same excitement
and
pride when I deploy my code as when I see one of my designs on stage. As a
creative
thinker and maker I'm extied to create functional things that are aesthetically pleasing. You can
see
that reflected in my work as a lighting designer and developer.
</p>
</div>
</div><!--Lauren-->
</section>
<footer>
<div class="footer">
<a href="https://www.linkedin.com/in/lauren-libretti/"> <i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/lalibretti"> <i class="fab fa-github"></i></a>
<a href="https://www.laurenlibretti.com/" class="lights light-lighting"><i class="far fa-lightbulb"></i></a>
<a href="https://www.facebook.com/profile.php?id=5138727" class="fa"> <i class="fab fa-facebook-f"></i> </a>
<a href="https://www.instagram.com/lalibretti/" class="in insta-instagram"><i
class="fab fa-instagram"></i></a>
<a href="mailto:lalibretti616@gmail.com"><i class="far fa-envelope"></i></a>
<p class=" footer items-center">made with ♥ by Lauren</p>
</div>
<!--footer-->
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>