-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (80 loc) · 3.43 KB
/
about.html
File metadata and controls
82 lines (80 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Jivan</title>
<link href="about.css" rel="stylesheet">
<nav>
<h3><a href="index.html" >JB</h3>
<div class="nav-buttons">
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
</div>
</nav>
</head>
<body>
<div class="education-all">
<h2>Education</h2>
<div class="first-education">
<h4>App Academy</h4>
<h5>2024 - Present</h5>
<p>I am currently enrolled in App Academy, an intensive
software engineering program. 💻 I have mastered
JavaScript and completed several projects that showcase
my coding skills. Presently, I am focusing on HTML and
CSS, building and replicating online websites to highlight
my design and front-end development abilities. 🌐✨</p>
</div>
<div class="second-education">
<h4>California State University, Stanislaus</h4>
<h5>2021 - 2023</h5>
<p>I graduated from California State University, Stanislaus, with
a Bachelor of Science in Computer Information Systems. 🎓📚
My coursework included Advanced Python Programming, where I built
innovative projects using Python, and Database Management Systems,
where I utilized SQL and Microsoft Access to create databases.
I studied Systems Analysis and Design, focusing on structured design and diagrams
of computer-based information systems and major application projects. 💼🔍
Additionally, I completed courses in Network Administration and
Network Application Development, earning a Certified
Network Pro Certificate from TestOut Corporation. 🌐📁 </p>
</div>
<div class="third-education">
<h4>Las Positas College</h4>
<h5>2019 - 2021</h5>
<p>During my time at Las Positas College, I focused on knocking
out general education requirements while also engaged into
business studies. 📘💼 I gained a solid foundation in various
business principles and practices. After completing my
coursework, I proudly graduated with an Associate of
Science in Business. 🎓✨</p>
</div>
</div>
<div class="programming-everything">
<h3 class="programming-text">Programming Languages</h3>
<div class="programming-all">
<div class="js-all">
<img class="jspic" src="/images/js.jpg" alt="JavaScript">
<p>JavaScript</p>
</div>
<div class="python-all">
<img src="/images/python.jpg" alt="Python">
<p>Python</p>
</div>
<div class="html-all">
<img src="/images/html.jpg" alt="html">
<p>HTML</p>
</div>
<div class="css-all">
<img src="/images/css.jpg" alt="css">
<p>CSS</p>
</div>
<div class="sql-all">
<img class="sqlpic" src="/images/sql.jpg" alt="sql">
<p>SQL</p>
</div>
</div>
</div>
</body>
</html>