-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
78 lines (75 loc) · 3.34 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Learn more about Jaqueline Vazquez and contact her.">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<meta name="description" content="Learn more about Jaqueline and view her projects. Jaqueline is a front-end developer based in Dallas, TX.">
<title>About Jaqueline Vazquez</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">Jaqueline Vazquez</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html" title="Homepage">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html" title="About Jaqueline">About me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html" title="Contact page">Contact me</a>
</li>
</ul>
</div>
</div>
</nav>
<h1 class="text-center">About me</h1>
<h3 class="text-center">Front-end developer from Dallas, TX</h3>
<div class="about-paragraphs text-center">
<p>
After college, I was hired by Teach for America to be a bilingual teacher in the DFW area. Teaching has been a very rewarding challenge, but after teaching for six years, I decided it was time for a new path, and learning to code has allowed me to use the skills of problem solving, creativity, and technology I have learned in the classroom. I have learned programing through SheCodes and Codecademy, and am continuing to practice to get better every day. Check out some of my projects below!
</p>
</div>
<div class="container">
<div class="row">
<div class="col-sm-6">
<img src="images/plantsproject.PNG" alt="House plants app" class="img-fluid p-2 shadow rounded mb-3" />
<h3 class="text-center mb-5"> House Plants Project
</h3>
</div>
<div class="col-sm-6">
<img src="images/vazquezweather.PNG" alt="Weather app" class="img-fluid p-2 shadow rounded mb-4" />
<h3 class="text-center"> Weather Project
</h3>
</div>
</div>
</div>
</body>
</html>