-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutMe.html
More file actions
48 lines (48 loc) · 2.27 KB
/
AboutMe.html
File metadata and controls
48 lines (48 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Me | Damaris Barajas</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Top Navigation Bar -->
<nav class="top-nav">
<ul>
<li><a href="index.html" onclick="showSection('about')">Home</a></li>
<li><a href="AboutMe.html" onclick="showSection('about')">About Me</a></li>
<li><a href="portfolio.html" onclick="showSection('portfolio')">Portfolio</a></li>
<li><a href="resume.html" onclick="showSection('resume')">Resume</a></li>
<li><a href="contact.html" onclick="showSection('contact')">Contact</a></li>
</ul>
</nav>
<div class="section">
<div class="container">
<div class="content-section">
<div class="title">
<h1>About Me</h1>
</div>
<div class="content">
<h5>Software Developer <span>
& Designer
<P> Hey! I am Damaris. Software Developer & Desiger. I have
been passionate about anything with code since 2006, the
"MySpace" days. I enjoy bringing ideas to life through
code & design. With 10+ years of experience as a Senior
Technical Designer in the apparel industry, I easily transition
my expertise in knowledge in this field with strong attention to
detail, problem-solving, and troubleshooting. I am confident in
my capacity to make a substantial contribution to the success of
the company. My ultimate goal is to help the team achieve their
goals by creating quality and reliable software solutions.</P>
</div>
</div>
<div class="image-section">
<img src="images/Personal_Photo.png">
</div>
</div>
</div>
</section>
</body>
</html>