-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (169 loc) · 7.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport" content="" />
<title>Latoya Dawson Portfolio</title>
<link rel="stylesheet" a href="./assets/styles.css" />
</head>
<body>
<!--Navigation -->
<header>
<h1>Latoya Dawson</h1>
<nav>
<!-- Unordered list element -->
<ul>
<!--List item element -->
<li>
<a href="#about-me">About Me</a>
</li>
<li>
<a href="#my-work">My Work</a>
</li>
<li>
<a href="#contact-me">Contact Me</a>
</li>
</ul>
</nav>
</header>
<!--Hero Section -->
<section class="hero">
<div class="blurp">
<h2></h2>
</div>
<div class="img">
<img src="../latoyadawson-portfolio/assets/images/IMG_2412.jpeg" alt="latoya in blue shirt"/>
</div>
</section>
<!--About Me Section -->
<section id="about-me" class="about">
<div class="div-section">
<h2 class="section-title">About Me</h2>
</div>
<div class="body">
<p>
My name is Latoya Dawson and I am 28 years old. I am from sunny Los Angeles, California.
I am currently an Associate Technical Program Manager at Hulu. My hope is to grow in my role,
by understanding the tehcnical aspect of my job on a deeper level. I am currently enrolled in
a UCLA coding bootcamp in the hopes that I can understand the infrastructure and archectecture
at any compnay.
</p>
</div>
</section>
<!--My Work Section -->
<section id="my-work" class="work">
<div class="div-section">
<h2 class="section-title">My Work</h2>
</div>
<div class="body">
<div class="gallery">
<div class="main-project" >
<a href="https://albertjly.github.io/meal-music-picker/" target="_blank">
<img src="./assets/images/meal-picker.png" alt="meal-music-picker">
</a>
<div class="column-text">
Music My Meal <br>
JS/HTML/CSS(Bulma)
</div>
</div>
<div class="row">
<div class="column">
<a href="https://git.heroku.com/vault-ucla.git" target="_blank">
<img class="tile" src="./assets/images/dashboard.png" alt="budgeting wesbite">
</a>
<div class="column-text">
Marketing<br>
JS/Express/Nodes
</div>
</div>
<div class="column">
</div>
</div>
<div class="row">
<div class="column">
<a href="https://latoyadawson.github.io/weather-dashboard/" target="_blank">
<img class="tile" src="./assets/images/weather-dashboard.png" alt="weather-dashboard wesbite">
</a>
<div class="column-text">
Weather Dashboard <br>
JS/HTML/CSS
</div>
</div>
<div class="column">
<a href="https://latoyadawson.github.io/password-generator/" target="_blank">
<img class="tile" src="./assets/images/password-generator.png" alt="password-generator wesbite">
</a>
<div class="column-text">
Password Generator<br>
HTML/CSS/JS
</div>
</div>
</div>
<div class="row">
<div class="column">
<a href="https://latoyadawson.github.io/javascript-quiz/" target="_blank">
<img class="tile" src="./assets/images/js-quiz.png" alt="javascript-quiz wesbite">
</a>
<div class="column-text">
JavaScript Quiz<br>
JS/HTML/CSS
</div>
</div>
<div class="column">
<a href="https://latoyadawson.github.io/daily-planner/" target="_blank">
<img class="tile" src="./assets/images/daily-planner.png" alt="daily-planner wesbite">
</a>
<div class="column-text">
Work Day Scheduler<br>
HTML/JS/CSS
</div>
</div>
</div>
<div class="row">
<div class="column">
<a href="https://latoyadawson.github.io/marketing-agency/" target="_blank">
<img class="tile" src="./assets/images/marketing agency.png" alt="marketing-agency wesbite">
</a>
<div class="column-text">
Marketing<br>
HTML/CSS
</div>
</div>
<div class="column">
<a href="https://latoyadawson.github.io/run-buddy/" target="_blank">
<img class="tile"src="./assets/images/run-buddy.png" alt="run-buddy wesbite">
</a>
<div class="column-text">
Run Buddy <br>
HTML/CSS
</div>
</div>
</div>
</div>
</section>
<!--Contact Me -->
<section id="contact-me" class="contact">
<div class="div-section">
<h2 class="section-title">Contact Me</h2>
</div>
<div class="body" >
<ul class="contact-list">
<li>
<a href="mailto:[email protected]" target="_blank">[email protected]</a>
</li>
<li>
<a href="https://github.com/latoyadawson?subject=Inquiring" target="_blank">Github</a>
</li>
<li>
<a href="tel:310-871-70796" target="_blank">310.871.0796</a>
</li>
<li>
<a href="https://www.linkedin.com/in/latoyadawson/" target="_blank">Linkedin</a>
</li>
<li>
<a href="https://www.instagram.com/latoya_dawson/" target="_blank">Instagram</a>
</li>
</ul>
</div>
</section>
</body>
</html>