-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
190 lines (146 loc) · 6.5 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html>
<head>
<title>Danyelle's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="assets/styles/main.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="assets/scripts/index.js" type="text/javascript" charset="utf-8" defer></script>
</head>
<body>
<nav id="navbar">
<div class="topnav">
<a class="active" href="#about">About</a>
<a href="#languages">Languages</a>
<a href="#porfolio">Portfolio</a>
<a href="#contact">Contact</a>
</div>
</nav>
<header class="landingpage">
<h1>Danyelle Jenkins</h1>
<p>Junior Front-End Software Engineer based in Los Angeles.
</p>
<hr class="divider black my-4" />
<div class="columns download">
<p>
<a href="Resume/resume (1).pdf" class="button" download><i class="fa fa-download"></i>Check out my Resume!</a>
</p>
</div>
</header>
<section class="page-section pg-primary" id="about">
<h1>About Me :)</h1>
<img src="images/me.jpg" width="150" height="150" alt="me" class="center">
<hr class="divider black my-4" />
<p>My name is Danyelle Jenkins and I am a Junior Software Engineer with an
emphasis on Front-End development. My passion is creating websites for
beauty and clothing brands to help sell their products. I have built single
page applications using HTML/CSS, JavaScript, React, and Python while
communicating with REST APIs. Please continue to view my work!
</p>
<!-- <button class="button button2 js-scroll-trigger" href="#services">Get Started!</button> -->
</section>
<section class="page-section pg2-primary" id="languages">
<h1>Languages</h1>
<hr class="divider black my-4" />
<div style="width: 100%;">
<div style="margin-left: 10%; height: 100px; float: left; font-size: 25px;">
HTML/CSS
</div>
<div style="margin-left: 10%; height: 100px; float: left; font-size: 25px;">
JavaScript
</div>
<div style="margin-left: 20%; height: 100px; float: left; font-size: 25px;">
React
</div>
<div style="margin-left: 20%; height: 100px; float: left; font-size: 25px;">
Python
</div>
</section>
<section class="page-section pg3-primary" id="porfolio">
<h2 class="text-center mt-0">Portfolio</h2>
<hr class="divider black my-4" />
<div class="row">
<div class="column">
<img src="images/planner.png" alt="A daily to-do list using react.js to create, show, update, and delete a to-do" onclick="myFunction(this);">
<a class="text-muted mb-5" href="https://djenkins26.github.io/daily-to-do-list/">Daily To-Do Planner</a>
</div>
<div class="column">
<img src="images/travelblog.png" alt="A react application for users to create a travel blog" onclick="myFunction(this);">
<a class="text-muted mb-5" href=" https://djenkins26.github.io/travel-blog-client/">Travel Blog</a>
</div>
<div class="column">
<img src="images/teahouse.png" alt="Used React to build an online space to spill the tea" onclick="myFunction(this);">
<a class="text-muted mb-5" href="https://ga-sei-team-418.github.io/teahouse-client/">Teahouse</a>
</div>
<div class="column">
<img src="images/productsapp.png" alt="SPA where users can input products and short reviews" onclick="myFunction(this);">
<a class="text-muted mb-5" href="https://djenkins26.github.io/products-app-project2-client-/">Products App</a>
</div>
<div class="column">
<img src="images/tictactoe.png" alt="Interactive Tic-Tac-Toe board game using JavaScript" onclick="myFunction(this);">
<a class="text-muted mb-5" href="https://djenkins26.github.io/tic-tac-toe/">Tic Tac Toe</a>
</div>
<!-- The expanding image container -->
<div class="container">
<!-- Close the image -->
<span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<!-- Expanded image -->
<img id="expandedImg" style="width:50%">
<!-- Image text -->
<div id="imgtext"></div>
</div>
</section>
<!-- <script>
// When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunction()};
// Get the navbar
var navbar = document.getElementById("navbar");
// Get the offset position of the navbar
var sticky = navbar.offsetTop;
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script> -->
<script>
function myFunction(imgs) {
// Get the expanded image
var expandImg = document.getElementById("expandedImg");
// Get the image text
var imgText = document.getElementById("imgtext");
// Use the same src in the expanded image as the image being clicked on from the grid
expandImg.src = imgs.src;
// Use the value of the alt attribute of the clickable image as text inside the expanded image
imgText.innerHTML = imgs.alt;
// Show the container element (hidden with CSS)
expandImg.parentElement.style.display = "block";
}
</script>
<section class="page-section pg4-primary" id="contact">
<div class="row justify-content-center">
<div class="col-lg-8 text-center">
<h2 class="mt-0">Contact Me!</h2>
<!-- <hr class="divider my-4" /> -->
<a href="www.linkedin.com/in/danyelle-jenkins" class="button1">LinkedIn </a>
<hr class="divider my-4" />
<a href="https://github.com/djenkins26" class="button1">Github</a>
<hr class="divider my-4" />
</div>
</div>
<div class="row">
<div class="col-lg-4 ml-auto text-center mb-5 mb-lg-0">
<i class="fas fa-phone fa-3x mb-3 text-muted"></i>
<div>(323) 839-7911</div>
</div>
<div class="col-lg-4 mr-auto text-center">
<i class="fas fa-envelope fa-3x mb-3 text-muted"></i>
<!-- Make sure to change the email address in BOTH the anchor text and the link target below!-->
<a class="d-block" href="djenkins0628@gmail.com">djenkins0628@gmail.com</a>
</div>
</div>
</section>
</body>