-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (73 loc) · 3.19 KB
/
index.html
File metadata and controls
87 lines (73 loc) · 3.19 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- TODO: add head content below -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>J Alfredo Ornelas - Portfolio</title>
<link rel="stylesheet" type="text/css" href="./assets/reset.css">
<link rel="stylesheet" type="text/css" href="./assets/styles.css">
</head>
<header>
<h1>Jose Alfredo Ornelas</h1>
<nav>
<a href="#About-Me">About Me</a>
<a href="#Work">Work</a>
<a href="#Contact">Contact Me</a>
<a href="#Resume">Resume</a>
</nav>
</header>
<h3 class="hero-banner">A brief summary about me and projects I am working on</h3>
<!-- TODO: add body content below -->
<body>
<main>
<div class="page-section">
<h2>About Me</h2>
<div class="page-section">
<p>My name is Jose and I am from Madison, WI. I have lived in this state for a majority of my life
and am looking forward to expanding my programming knowledge. I currently work in finance for a local
credit union as a financial mentor and have been doing this for 6 years. My goal is to move into their
Internet Services department after completion of this class.
<br></br>
In my spare time I enjoy being outdoors and going on hikes or going camping. I also enjoy playing videogames
and reading books. I am currently reading The Parabal of the Sower by Octavia Butler. Some of the games I am currently working
on completing are The Witcher 3 and Horizon Forbidden West. Aside from this, I enjoy cooking meals with my partner and doing
puzzles together.
</p>
</div>
</div>
<div class="page-section">
<h2>Work</h2>
<div class="flex-item flex-container surf-report">
<div class="text">Surf Report<h3>MERN Stack</h3></div>
</div>
<div class="flex-item flex-container led-wall">
<div class="text">LED Wall<h3>Node/IoT</h3></div>
</div>
<div class="flex-item flex-container react-calc">
<div class="text">Calculator<h3>React/Javascript/CSS</h3></div>
</div>
<div class="flex-item flex-container run-buddy">
<div class="text">Run Buddy<h3>MERN Stack</h3></div>
</div>
<div class="flex-item flex-container pastel-puzzles">
<div class="text">Pastel Puzzles<h3>HTML/CSS</h3></div>
</div>
</div>
<div class="contact page-section">
<h2>Contact Me</h2>
<div class="contact">
<address>
<a>608.232.5000</a>
<a href="mailto:ornelalf001@gmail.com">E-mail</a>
<a href="https://www.github.com/jaornelas">GitHub</a>
<a href="https://www.linkedin.com/in/jos%C3%A9-alfredo-ornelas-4bb38a166">LinkedIn</a>
</address>
</div>
</div>
</main>
</body>
<footer>
<p>© 2024 J Alfredo Ornelas</p>
</footer>
</html>