-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Portfolio Website</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<main>
<div class="container">
<div class="header">
<header>Basma Diaz</header>
<article>
<h2>Software Developer</h2>
</article>
</div>
<div class="contactInfoContainer">
<div class="contactInfo">
<h2 class="contactMe">Contact Me!</h2>
<ol>
<li class="socialListItem">
<img src="https://static-00.iconduck.com/assets.00/linkedin-icon-512x512-vkm0drb1.png" alt="LinkedIn Logo" class="socialLogo"/>
<a href="https://www.linkedin.com/feed/">LinkedIn</a>
</li>
<li class="socialListItem">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Octicons-mark-github.svg/2048px-Octicons-mark-github.svg.png" alt="LinkedIn Logo" class="socialLogo" />
<a href="https://github.com/bdiaz12?tab=repositories">GitHub</a>
</li>
<li class="socialListItem">
<img src="https://illustoon.com/photo/7764.png" alt="LinkedIn Logo" class="socialLogo" />
<a href="https://mail.google.com/mail/u/0/#inbox">Email</a>
</li>
</ol>
</div>
<img src="IMG_8121-Editcopy.jpg" alt="girl holding flowers" class="profileImage" />
</div>
<div class="centerColumn">
<h2>About Me</h2>
<hr>
<p>
I'm a software developer living in Austin, TX. I'm very passionate about web development and design, I find joy in collaborating with others to create meaningful projects.I have a dream and a passion of creating a user friendly marketing app to advertise local small homeservice businesses.
</p>
<h2>As a former marketing consultant, I'm interested in:</h2>
<ul>
<li>Ways to challenge my creativity</li>
<li>Design and create computer systems and applications to make them user-friendly</li>
<li>The ability to learn new things.</li>
</ul>
</div>
<footer class="footer">© Copyright Basma Diaz</footer>
</div>
</main>
</html>