-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (55 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Richard Cardozo - Portfolio 1</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- header -->
<header>
<h1 class= "headfont"> Richard Cardozo </h1>
<h3> Software Developer</h3>
</header>
<!-- main -->
<!-- intro -->
<main>
<img src="img/face.png" width= "400" alt="profile photo" class="center">
<article>
<h2>Hello, I'm Richard Cardozo</h2>
<p>I am a software developer living in Houston, Texas. I'm a realtor on the side but my true passion is software development.</p>
<p> Things I am passionate about:
<ul>
<li> Software Development </li>
<li> Real Estate </li>
<li> Collaborating on Various Projects</li>
</ul>
<p> Feel free to reach out. Contact me</p>
</article>
<hr>
<!-- about -->
<article>
<h2> About Richard </h2>
<p> I graduated from University of Houston with a degree in Digital Media. Shortly after, I became a full time real estate agent. </p>
<p> I've recent joined the Thinkful program and began my journey as a software developer. </p>
<p> I love collaborating on various projects.</p>
<hr>
</article>
<!-- contact -->
<article>
<h2> Contact Richard </h2>
<p>I'd love to get in touch:</p>
<ol>
<li><a href="https://www.linkedin.com/in/richcardozo/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/rcardozo10" target="_blank">Github</a></li>
</ol>
</article>
</main>
<!-- footer -->
<footer>
<p> © Richard Cardozo</p>
</footer>
</body>
</html>