-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (92 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Eric's Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script defer src="index.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero_image">
<div class="hero_text">
<h1>Eric's Portfolio</h1>
</div>
</div>
<section class="grid">
<h1>About me</h1>
<p>
Welcome to my website! My name is Eric Rodriguez and my passion is software development. Born in the Napa
Valley, I attended the Napa
Valley College and recieved an A.S. in Mathematics and another A.S. in Physics. I then transferred and
recieved my B.S. in Computer Science at
CSU, Sacramento.
</p>
<p>
I currently work as a grader for the class Operating System Principles at CSU, Sacramento, as well as a barista
at Napa Valley Coffee Roasting Company. I am looking for jobs in software development.
</p>
</section>
<section class="grid">
<h1>Education</h1>
<p>
A.S. Mathematics | Napa Valley College
</p>
<p>
A.S. Physics | Napa Valley College
</p>
<p>
B.S. Computer Science | California State University, Sacramento
</p>
</section>
<section class="grid">
<h1>Contact information</h1>
<p>
<a href="mailto: ericrodriguez455215@gmail.com">ericrodriguez455215@gmail.com</a>
</p>
<p>
<a href="https://www.linkedin.com/in/eric-rodriguez-437766198/">LinkedIn</a>
</p>
<p>
<a href="https://profile.indeed.com/p/ericr-k930cdc">Indeed</a>
</p>
</section>
<section class="grid">
<h1>Skills</h1>
<h2>Programming Languages</h2>
<div class="list">
<ul>
<li>C#</li>
<li>C++</li>
<li>C</li>
<li>Java</li>
<li>JavaScript</li>
<li>Python (learning)</li>
</ul>
</div>
<h2>Frameworks</h2>
<div class="list">
<ul>
<li>Java Spring</li>
</ul>
</div>
<h2>Database</h2>
<div class="list">
<ul>
<li>MySQL</li>
<li>Google Firestore</li>
</ul>
</div>
</section>
<section class="grid">
<h1>Links to my projects</h1>
<p>
The following links go to pages that will showcase the different projects I've done either in school or
personal.
</p>
</section>
<section class="footer">
<p>All images are my own. The website is hosted on GitHub and built by me.</p>
</section>
</body>
</html>